/* Mobile Profile Header Styles */
.profile-header-mobile {
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 3px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-avatar-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.mobile-avatar-container {
    flex-shrink: 0;
}

.mobile-user-info {
    flex: 1;
}

.mobile-user-name h1 {
    font-size: 24px;
    margin: 0 0 5px 0;
    color: #333;
    font-weight: 700;
}

.mobile-join-date {
    font-size: 14px;
    color: #666;
}

.mobile-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 5px 0;
}

.mobile-meta-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 8px;
}

.mobile-profile-description {
    font-size: 12px;
    line-height: 1.3;
    color: #333;
}

.mobile-action-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.btn-mobile-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #007bff;
    border-radius: 8px;
    background: #007bff;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
}

.btn-mobile-action:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-mobile-action.btn-follow.following {
    background: #28a745;
    border-color: #28a745;
}

.btn-mobile-action.btn-follow.following:hover {
    background: #1e7e34;
    border-color: #1e7e34;
}

.mobile-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 4px solid #8b0000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.mobile-user-id-label {
    background: #000000;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}