body {
    margin: 0;
    padding-left: 0px;
    padding-right: 0px;
    font-family: 'Roboto', Arial, sans-serif;
    background: #f8f8f8;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px 24px 40px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.site-title {
    font-size: 2rem;
    font-weight: 700;
    color: #275f2a;
    letter-spacing: 1px;
}
.header-buttons {
    display: flex;
    gap: 16px;
}
.header-button {
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: #275f2a;
    color: #fff;
    transition: background 0.2s;
}
.header-button.signup {
    background: #1a472a;
}
.header-button:hover {
    background: #45a049;
}
.main-content {
    max-width: 1100px;
    margin: 80px auto 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 3rem;
}
.main-text {
    flex: 1;
    min-width: 320px;
}
.main-images {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 1.2rem;
    min-width: 140px;
}
.main-img {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(39,95,42,0.10);
    object-fit: cover;
    background: #fff;
}
.main-img-large {
    width: 220px;
    height: 260px;
}
.main-img-small {
    width: 120px;
    height: 120px;
}
.main-img-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.2;
}
.sub-heading {
    font-size: 1.25rem;
    color: #444;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .main-content {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .main-images {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        min-width: 0;
    }
    .main-img-large {
        width: 160px;
        height: 120px;
    }
    .main-img-small {
        width: 80px;
        height: 80px;
    }
}
@media (max-width: 700px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 16px;
    }
    .main-content {
        margin: 40px 16px 0 16px;
    }
}
.text-link {
    background: none !important;
    color: #275f2a !important;
    border: none !important;
    padding: 0 !important;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: none !important;
    transition: color 0.2s;
}
.text-link:hover {
    color: #1a472a !important;
    text-decoration: underline;
}
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.25);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(39,95,42,0.12);
    padding: 36px 32px 28px 32px;
    min-width: 320px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
}
.close-modal {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}
.close-modal:hover {
    color: #275f2a;
}
.modal-content h2 {
    margin-top: 0;
    margin-bottom: 24px;
    color: #275f2a;
    text-align: center;
    font-size: 1.5rem;
}
.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
}
.form-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.form-group input:focus {
    border-color: #275f2a;
    outline: none;
}
.signup-submit-button {
    width: 100%;
    padding: 12px;
    background: #275f2a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.signup-submit-button:hover {
    background: #1a472a;
}
.signup-error {
    color: #dc3545;
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}
.forgot-password-link {
    text-align: center;
    margin-top: 15px;
}
.forgot-password-link a {
    color: #275f2a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.forgot-password-link a:hover {
    color: #1a472a;
    text-decoration: underline;
}
.coach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    justify-content: center;
}

.coach-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(39,95,42,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    width: 100%;
    box-sizing: border-box;
}

.coach-card:hover {
    box-shadow: 0 8px 32px rgba(39,95,42,0.20);
    transform: translateY(-4px);
    border-color: #275f2a;
}

.coach-profile-pic {
    width: 95%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid #e6f4ea;
    box-shadow: 0 4px 12px rgba(39,95,42,0.15);
}

.coach-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #275f2a;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
}

.coach-experience {
    font-size: 1rem;
    color: #666;
    text-align: center;
    font-weight: 500;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}
#dashboard-content {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

/* Responsive coach grid */
@media (max-width: 1400px) {
    .coach-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .coach-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .coach-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
        gap: 16px;
        padding: 0 16px;
    }
}
    
    .coach-card {
        min-height: 280px;
        padding: 2px 2px;
    }
    
    .coach-profile-pic {
        width: 95%;
        height: 160px;
        margin-bottom: 12px;
    }
    
    .coach-name {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .coach-experience {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 600px) {
    .coach-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
    
    .coach-card {
        min-height: 260px;
        padding: 18px 14px;
    }
    
    .coach-profile-pic {
        width: 95%;
        height: 140px;
        margin-bottom: 10px;
    }
    
    .coach-name {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .coach-experience {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
} 