/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Header and Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 60px; /* Controlled size for logo */
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0078d7;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
main {
    padding: 30px 20px;
    min-height: calc(100vh - 140px);
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.welcome-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0078d7;
}

.welcome-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #0078d7;
    color: white;
}

.btn-primary:hover {
    background-color: #0062b1;
}

.btn-secondary {
    background-color: transparent;
    color: #0078d7;
    border: 1px solid #0078d7;
}

.btn-secondary:hover {
    background-color: rgba(0, 120, 215, 0.1);
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px 0;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-menu {
        width: 100%;
        margin-top: 15px;
    }
    
    .nav-menu ul {
        flex-direction: column;
    }
    
    .nav-menu li {
        margin: 10px 0;
        margin-left: 0;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .welcome-section h1 {
        font-size: 2rem;
    }
}
/* Auth Forms */
.auth-form {
    max-width: 450px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0078d7;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #0078d7;
    box-shadow: 0 0 0 2px rgba(0,120,215,0.2);
}

.form-actions {
    margin-top: 30px;
}

.form-actions .btn {
    width: 100%;
}

.form-toggle {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

.form-toggle a {
    color: #0078d7;
    text-decoration: none;
}

.form-toggle a:hover {
    text-decoration: underline;
}

/* Utility Classes */
.hidden {
    display: none;
}
/* Profile Page Styles */
.profile-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.profile-header {
    padding: 25px;
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.profile-avatar {
    font-size: 3rem;
    color: #666;
    margin-right: 20px;
}

.profile-status h2 {
    margin: 0 0 10px 0;
    color: #333;
}

.profile-details {
    padding: 25px;
}

.feature-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.feature-item.active {
    border-left: 4px solid #0078d7;
}

.feature-item.inactive {
    border-left: 4px solid #ccc;
    opacity: 0.7;
}

.feature-item i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0078d7;
}

.feature-item.inactive i {
    color: #999;
}

.feature-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.upgrade-text {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #e67e22;
    font-style: italic;
}

.account-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
}

.account-actions {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}
/* Dashboard Styles */
.welcome-section {
    background-color: #f0f8ff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.welcome-section h1 {
    margin-bottom: 10px;
    color: #0078d7;
}

.approval-status {
    color: #e67e22;
    font-weight: 500;
    font-size: 1.1rem;
}

.resources-section {
    margin-bottom: 30px;
}

.resources-section h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.resource-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.resource-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.resource-card h3 {
    color: #0078d7;
    margin-bottom: 15px;
}

.resource-card p {
    margin-bottom: 10px;
    color: #666;
}

.resource-card .btn {
    margin-top: 15px;
}

.notification-section {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* For tablets and larger screens */
@media (min-width: 768px) {
    .resource-cards {
        flex-direction: row;
    }
    
    .resource-card {
        flex: 1;
    }
}
/* Settings page styles */
.settings-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.settings-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    padding: 25px;
}

.settings-group {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.settings-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.settings-toggle {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.settings-toggle span {
    margin-left: 10px;
}

.settings-info {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.settings-actions {
    margin-top: 20px;
}

/* Switch toggle styles */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #0078d7;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
