
/* General Styles */
.moot-dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.moot-sidebar {
    width: 260px;
    background: 
#1e293b;
    color: white;
    padding: 20px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.moot-sidebar h2 {
    color: white;
    font-size: 20px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid 
#3b82f6;
}

.moot-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: 
#cbd5e1;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.moot-nav a:hover {
    background: 
#334155;
    color: white;
}

.moot-nav a.active {
    background: 
#3b82f6;
    color: white;
}

.moot-nav a.logout-link {
    margin-top: 30px;
    border-top: 1px solid 
#334155;
    padding-top: 20px;
}

.moot-main-content {
    margin-left: 260px;
    flex: 1;
    background: 
#f1f5f9;
}

.moot-header {
    background: white;
    padding: 20px 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    border-radius: 50%;
}

.user-info h3 {
    margin: 0;
    font-size: 18px;
}

.team-number-badge {
    background: 
#3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-top: 5px;
}

.moot-content-area {
    padding: 30px 40px;
}

/* Dashboard Home */
.dashboard-overview {
    background: 
#e2e8f0;
    padding: 20px;
    border-radius: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-card h4 {
    margin: 0 0 10px 0;
    color: 
#64748b;
    font-size: 14px;
    text-transform: uppercase;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: 
#1e293b;
}

.status-submitted {
    color: 
#10b981;
}

.status-pending {
    color: 
#f59e0b;
}

.announcements-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.announcement-card {
    border-left: 4px solid 
#3b82f6;
    padding: 15px;
    margin-bottom: 15px;
    background: 
#f8fafc;
    border-radius: 5px;
}

.announcement-card h4 {
    margin: 0 0 10px 0;
    color: 
#1e293b;
}

/* My Team Page */
.my-team-page {
    background: 
#e2e8f0;
    padding: 20px;
    border-radius: 10px;
}

.team-header {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.member-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.member-card img {
    border-radius: 50%;
    margin-bottom: 15px;
}

.member-card h4 {
    margin: 10px 0;
    color: 
#1e293b;
}

.member-card .role {
    color: 
#3b82f6;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Documents & Materials */
.documents-page, .materials-page {
    background: 
#e2e8f0;
    padding: 20px;
    border-radius: 10px;
}

.documents-table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.documents-table thead {
    background: 
#3b82f6;
    color: white;
}

.documents-table th,
.documents-table td {
    padding: 15px;
    text-align: left;
}

.documents-table tbody tr:hover {
    background: 
#f8fafc;
}

.btn-view, .btn-download {
    background: 
#3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-view:hover, .btn-download:hover {
    background: 
#2563eb;
}

/* Submit Memorial */
.submit-memorial-page {
    background: 
#e2e8f0;
    padding: 20px;
    border-radius: 10px;
}

.memorial-status-bar {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
}

.status-badge.submitted {
    background: 
#d1fae5;
    color: 
#065f46;
}

.status-badge.pending {
    background: 
#fed7aa;
    color: 
#92400e;
}

.upload-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Hearings */
.hearings-page {
    background: 
#e2e8f0;
    padding: 20px;
    border-radius: 10px;
}

.next-hearing-banner {
    background: linear-gradient(135deg, 
#3b82f6 0%, 
#2563eb 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.countdown-timer {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
}

.btn-join-meeting {
    background: white;
    color: 
#3b82f6;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    margin-top: 15px;
}

.hearings-table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.btn-meet {
    background: 
#10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
}

/* Clarifications */
.clarifications-page {
    background: 
#e2e8f0;
    padding: 20px;
    border-radius: 10px;
}

.clarifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.clarifications-list, .clarification-form {
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.clarification-card {
    border: 1px solid 
#e2e8f0;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.pending-answer {
    color: 
#f59e0b;
    font-style: italic;
}

.limit-reached {
    background: 
#fef3c7;
    padding: 15px;
    border-radius: 8px;
    color: 
#92400e;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: 
#1e293b;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid 
#cbd5e1;
    border-radius: 5px;
    font-size: 14px;
}

.btn-submit {
    background: 
#3b82f6;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.btn-submit:hover {
    background: 
#2563eb;
}

/* Message Organizers */
.message-organizers-page {
    background: 
#e2e8f0;
    padding: 20px;
    border-radius: 10px;
}

.message-organizers-page form {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

/* Registration Form */
.moot-registration-form {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.moot-registration-form h2 {
    color: 
#1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.moot-registration-form h3 {
    color: 
#3b82f6;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid 
#e2e8f0;
}

/* Admin Styles */
.moot-admin .admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.moot-admin .stat-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid 
#3b82f6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.moot-admin .stat-box h3 {
    margin: 0;
    font-size: 36px;
    color: 
#3b82f6;
}

.moot-admin .admin-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.clarification-admin-card,
.announcement-admin-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid 
#3b82f6;
}

@media (max-width: 768px) {
    .moot-sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }

    .moot-main-content {
        margin-left: 0;
    }

    .stats-grid,
    .team-members-grid,
    .clarifications-grid {
        grid-template-columns: 1fr;
    }
}
