/*!*************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/academics/resources/committes/committee.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************/
.committee-detail-page {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 2rem;
    font-family: Arial, sans-serif;
}

.committee-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.committee-header h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.committee-content {
    max-width: 1200px;
    margin: 0 auto;
}

.members {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.members h2 {
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
}

.members h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #1a237e;
    border-radius: 2px;
}

.members-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.members-table th,
.members-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    color: #333;
}

.members-table th {
    background-color: #1a237e;
    color: white;
    font-weight: 600;
}

.members-table td {
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
}

.members-table tr:nth-child(even) td {
    background-color: #f6f8fc;
}

.members-table tr:hover td {
    background-color: #e8eaf6;
    transition: background-color 0.3s ease;
}

.mobile-view {
    display: none;
}

.member-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.member-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
}

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

.card-label {
    width: 40%;
    padding: 0.75rem;
    background-color: #f6f8fc;
    font-weight: bold;
    color: #1a237e;
    border-right: 1px solid #e0e0e0;
}

.card-value {
    width: 60%;
    padding: 0.75rem;
}

@media (max-width: 768px) {
    .committee-header {
        padding: 1.5rem;
    }

    .committee-header h1 {
        font-size: 1.8rem;
    }

    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .members {
        padding: 1rem;
    }
} 
