/* Modern Profile Page - X/Reddit Style */

/* Main Container */
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f8fafc;
    min-height: calc(100vh - 120px);
    padding: 0;
}

/* Profile Header Section */
.profile-header {
    background: white;
    position: relative;
    padding: 2rem 0;
    margin: 0 0 2rem 0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.profile-info-section {
    background: transparent;
    border-radius: 0;
    padding: 0 2rem;
    position: relative;
    margin-top: 0;
    box-shadow: none;
}

.profile-avatar-container {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    padding-top: 1rem;
}

.profile-avatar-large {
    position: relative;
    z-index: 2;
}

.avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    background: white;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.profile-main-info {
    flex: 1;
    padding-bottom: 1rem;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.profile-handle {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.profile-bio {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.profile-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #64748b;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-icon {
    font-size: 1rem;
}

/* Profile Stats */
.profile-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.5rem 0;
}

.stat-item:hover {
    transform: translateY(-1px);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    text-transform: lowercase;
}

/* Navigation Tabs */
.profile-nav {
    background: white;
    margin: 0 0 1.5rem 0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.profile-nav-inner {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: #1a73e8;
    border-bottom-color: #1a73e8;
    background: rgba(26, 115, 232, 0.04);
}

.tab-btn:hover:not(.active) {
    background: #f8fafc;
    color: #1a202c;
}

/* Content Sections */
.profile-content {
    margin: 0;
}

.tab-content {
    display: none;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.tab-content.active {
    display: block;
}

.content-header {
    padding: 1.5rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.content-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.content-header p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Reviews List */
.reviews-list {
    padding: 0;
}

.review-card {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.review-card:hover {
    background: #f8fafc;
}

.review-card:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.professor-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.professor-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-number {
    font-weight: 600;
    color: #1a73e8;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Rating Color Classes */
.rating-display.rating-excellent .rating-number,
.rating-excellent .rating-number {
    color: white !important;
    background-color: #4caf50 !important;
    font-weight: 600;
}

.rating-display.rating-good .rating-number,
.rating-good .rating-number {
    color: white !important;
    background-color: #8bc34a !important;
    font-weight: 600;
}

.rating-display.rating-average .rating-number,
.rating-average .rating-number {
    color: white !important;
    background-color: #ff9800 !important;
    font-weight: 600;
}

.rating-display.rating-poor .rating-number,
.rating-poor .rating-number {
    color: white !important;
    background-color: #f44336 !important;
    font-weight: 600;
}

.rating-display.rating-very-poor .rating-number,
.rating-very-poor .rating-number {
    color: white !important;
    background-color: #d32f2f !important;
    font-weight: 600;
}

.review-content p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

.review-date {
    font-weight: 500;
}

.review-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #d1d5db;
    background: white;
    color: #6b7280;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-small:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.btn-danger {
    color: #dc2626;
    border-color: #fecaca;
}

.btn-danger:hover {
    background: #fef2f2;
    border-color: #fca5a5;
}

/* Settings Section */
.settings-grid {
    padding: 0;
}

.setting-item {
    padding: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 1rem 0;
}

.setting-group {
    margin-bottom: 1.5rem;
}

.setting-group:last-child {
    margin-bottom: 0;
}

.setting-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.setting-group input[type="text"],
.setting-group input[type="tel"],
.setting-group input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #fafafa;
}


.setting-group input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
    background: white;
}

/* Toggle Settings */
.toggle-setting {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.toggle-info {
    flex: 1;
    padding-right: 1rem;
}

.toggle-info label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

/* Apple-style Toggle */
.apple-toggle {
    position: relative;
    display: inline-block;
}

.apple-toggle input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 32px;
    background-color: #cbd5e0;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

input:checked + .toggle-slider {
    background-color: #1a73e8;
}

input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

/* Tooltip */
.setting-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 0.5rem;
}

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #6b7280;
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    cursor: help;
}

.setting-tooltip::after {
    content: attr(data-tooltip);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1f2937;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    white-space: normal;
    max-width: 320px;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 10000;
    line-height: 1.5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    pointer-events: none;
}

.setting-tooltip::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 9999;
    pointer-events: none;
}

.setting-tooltip:hover::after,
.setting-tooltip:hover::before,
.setting-tooltip.active::after,
.setting-tooltip.active::before {
    opacity: 1;
    visibility: visible;
}

/* Professor Verification Form */
.professor-verification {
    padding: 1.5rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
}

.professor-verification p {
    color: #166534;
    font-weight: 500;
    margin-bottom: 1rem;
}

.verification-form {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.verification-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1rem;
    border: 2px solid #86efac;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: white;
}

.verification-form input[type="email"]:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.verification-form input[type="email"]::placeholder {
    color: #86efac;
}

.verification-form .btn-primary {
    padding: 0.875rem 2rem;
    white-space: nowrap;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .verification-form {
        flex-direction: column;
    }

    .verification-form input[type="email"] {
        min-width: 100%;
    }

    .verification-form .btn-primary {
        width: 100%;
    }
}

/* Phone Input Section */
#phone-input-group {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#phone-input-group label {
    color: #0369a1;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#phone-number {
    border-color: #7dd3fc;
    background: white;
}

#phone-number:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

.btn-secondary {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: #1557b0;
}

/* Danger Zone */
.danger-zone {
    border: 1px solid #fecaca;
    background: #fef2f2;
    border-radius: 12px;
    margin-top: 2rem;
}

.danger-zone h3 {
    color: #dc2626;
}

.btn-danger {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-danger:hover {
    background: #b91c1c;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.5rem 0;
}

.empty-state p {
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
}

.btn-primary {
    background: #1a73e8;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background: #1557b0;
}

/* Loading States */
.loading-state {
    text-align: center;
    padding: 3rem 2rem;
    color: #64748b;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid #1a73e8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Avatar Upload */
.avatar-upload {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.preview-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.upload-btn {
    background: #f8fafc;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.upload-btn:hover {
    background: #f1f5f9;
    border-color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-info-section {
        padding: 0 1rem 1.5rem 1rem;
        margin-top: -40px;
    }

    .profile-avatar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .avatar-large {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .profile-nav-inner {
        flex-direction: column;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e2e8f0;
        border-right: none;
    }

    .tab-btn.active {
        border-bottom-color: #e2e8f0;
        border-left: 3px solid #1a73e8;
    }

    .toggle-setting {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .toggle-info {
        padding-right: 0;
    }

    .setting-tooltip::after {
        left: 0;
        transform: none;
        width: 240px;
    }

    .setting-tooltip::before {
        left: 20px;
        transform: none;
    }

    .review-card {
        padding: 1rem;
    }

    .setting-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .profile-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .review-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .avatar-upload {
        flex-direction: column;
        align-items: center;
    }
}

/* Profile Actions Button */
.profile-actions {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-profile-public {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #1da1f2;
    background: #1da1f2;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.2);
}

.btn-profile-public:hover {
    background: white;
    color: #1da1f2;
    border-color: #1da1f2;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.btn-profile-public.active {
    background: #10a37f;
    border-color: #10a37f;
}

.btn-profile-public.active:hover {
    background: white;
    color: #10a37f;
    border-color: #10a37f;
}

/* Settings Icon Button */
.btn-settings-icon {
    padding: 0;
    border: 2px solid #64748b;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.btn-settings-icon:hover {
    background: #64748b;
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
}

.settings-gear-icon {
    width: 22px;
    height: 22px;
    transition: transform 0.5s ease;
    display: block;
    margin: 0;
    padding: 0;
}

.btn-settings-icon:hover .settings-gear-icon {
    transform: rotate(360deg);
}

/* BAN Button for Admins */
.btn-ban-user {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #dc3545;
    background: #dc3545;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.btn-ban-user:hover {
    background: #c82333;
    border-color: #c82333;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    transform: scale(1.05);
}

/* Clickable stat item */
.stat-item.clickable {
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.stat-item.clickable:hover {
    transform: translateY(-2px);
    background: rgba(29, 161, 242, 0.1);
    border-radius: 12px;
}

/* Friends list */
.friends-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
}

.friend-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.friend-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #1a73e8;
}

.friend-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.friend-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.friend-info {
    flex: 1;
}

.friend-nickname {
    font-size: 16px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 4px;
}

.friend-username {
    font-size: 14px;
    color: #5f6368;
}

.friend-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-friend-calendar,
.btn-friend-remove {
    flex: 1;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-friend-calendar {
    background: #1a73e8;
    color: white;
}

.btn-friend-calendar:hover {
    background: #1765cc;
}

.btn-friend-remove {
    background: #f1f3f4;
    color: #5f6368;
}

.btn-friend-remove:hover {
    background: #ea4335;
    color: white;
}

.no-friends-message {
    text-align: center;
    padding: 3rem;
    color: #5f6368;
}

.no-friends-message h3 {
    margin-bottom: 0.5rem;
    color: #202124;
}
/* Friend action button */
.btn-friend-action {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #1a73e8;
    background: #1a73e8;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.2);
}

.btn-friend-action:hover {
    background: white;
    color: #1a73e8;
    border-color: #1a73e8;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-friend-action.pending {
    background: #f57c00;
    border-color: #f57c00;
}

.btn-friend-action.pending:hover {
    background: white;
    color: #f57c00;
    border-color: #f57c00;
}

.btn-friend-action.friends {
    background: #ea4335;
    border-color: #ea4335;
}

.btn-friend-action.friends:hover {
    background: white;
    color: #ea4335;
    border-color: #ea4335;
}

/* Friend calendar embed */
#friend-calendar-embed {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 600px;
    overflow-y: auto;
}
.club-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.club-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #1a73e8;
}

.club-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.club-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f5f5f5;
}

.club-logo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.club-info {
    flex: 1;
}

.club-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #202124;
    margin: 0 0 0.5rem 0;
}

.club-role {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
}

.manager-role {
    background: #fef7e0;
    color: #f9ab00;
}

.member-role {
    background: #e8f0fe;
    color: #1a73e8;
}

.club-description {
    color: #5f6368;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
