/* Placement Cell Section Styles */

.placement-cell-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #0B3C5D;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #003e8f, #C2185B);
    margin: 0 auto;
    border-radius: 2px;
}

.placement-intro {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    line-height: 1.8;
}

.placement-intro p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
    text-align: justify;
}

.placement-intro p:last-child {
    margin-bottom: 0;
}

.placement-committee {
    margin-top: 40px;
}

.committee-title {
    font-size: 28px;
    font-weight: 600;
    color: #0B3C5D;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.committee-table-wrapper {
    overflow-x: auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.committee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.committee-table thead {
    background: linear-gradient(135deg, #0B3C5D, #1DA1F2);
}

.committee-table th {
    padding: 18px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #1DA1F2;
}

.committee-table th:first-child {
    border-top-left-radius: 8px;
}

.committee-table th:last-child {
    border-top-right-radius: 8px;
}

.committee-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.committee-table tbody tr:hover {
    background-color: #f0f7fb;
    transform: translateX(5px);
}

.committee-table tbody tr:last-child {
    border-bottom: none;
}

.committee-table td {
    padding: 16px 20px;
    font-size: 15px;
    color: #333333;
}

.committee-table td:first-child {
    font-weight: 600;
    color: #0B3C5D;
}

.committee-table td:nth-child(2) {
    font-weight: 500;
    color: #2c3e50;
}

.committee-table td:nth-child(3) {
    color: #1DA1F2;
    font-weight: 500;
}

.committee-table td:nth-child(4) {
    color: #555555;
    font-family: 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .placement-cell-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .committee-title {
        font-size: 22px;
    }

    .placement-intro {
        padding: 20px;
    }

    .placement-intro p {
        font-size: 14px;
    }

    .committee-table th,
    .committee-table td {
        padding: 12px 15px;
        font-size: 13px;
    }

    .committee-table tbody tr:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .committee-title {
        font-size: 20px;
    }

    .committee-table th,
    .committee-table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .title-underline {
        width: 60px;
        height: 3px;
    }
}
