.placement-details-area {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}
.placement-card {
    transition: all 0.3s ease;
    border-radius: 16px !important;
}
.placement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}
.placement-card .title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    padding-bottom: 12px;
}
.placement-card .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #133674;
    border-radius: 2px;
}
.placement-controls .form-select {
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    font-size: 1rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
}
.placement-controls .form-select:focus {
    border-color: #133674;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    outline: none;
}
.placement-controls .input-group-text {
    background: #f1f1f1;
    border: 1.5px solid #e0e0e0;
    border-right: none;
    border-radius: 10px 0 0 10px;
}
.placement-controls .form-control {
    border: 1.5px solid #e0e0e0;
    border-radius: 0 10px 10px 0;
    padding: 10px 15px;
    font-size: 1rem;
}
.placement-controls .form-control:focus {
    border-color: #133674;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    outline: none;
}
.placement-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}
.placement-table th,
.placement-table td {
    padding: 15px;
    font-size: 1rem;
    vertical-align: middle;
}
.placement-table th {
    background: #133674;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1;
}
.placement-table th.sortable {
    cursor: pointer;
    transition: background 0.3s ease;
}
.placement-table th.sortable:hover {
    background: #133674;
}
.placement-table th .fa-sort {
    margin-left: 5px;
    opacity: 0.5;
}
.placement-table th.asc .fa-sort::before {
    content: '\f0de'; /* Up arrow */
}
.placement-table th.desc .fa-sort::before {
    content: '\f0dd'; /* Down arrow */
}
.placement-table tbody tr {
    transition: background 0.2s ease;
}
.placement-table tbody tr:hover {
    background: rgba(74, 144, 226, 0.1);
}
.placement-table tbody td {
    border-bottom: 1px solid #e0e0e0;
    color: #495057;
}
@media (max-width: 768px) {
    .placement-card {
        padding: 20px;
    }
    .placement-card .title {
        font-size: 1.6rem;
    }
    .placement-table th,
    .placement-table td {
        font-size: 0.9rem;
        padding: 10px;
    }
    .placement-controls .input-group,
    .placement-controls .form-select {
        width: 100%;
    }
}