﻿.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: left;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.paneltable {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
/* Slider */

h2 {
    text-align: center;
    padding: 20px;
}
/* Slider */

.slick-slide {
    margin: 0px 20px;
}

    .slick-slide img {
        width: 100%;
    }

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.recruitment-separator {
    height: 4px;
    margin-bottom: 30px;
    background-color: #274383;
    width: 100%;
}

.recruitment-btn {
    display: inline-block;
    background: #274383;
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 4px;
    transition: .3s;
    margin-top: 5px;
    font-size: 14px;
}

    .recruitment-btn:hover {
        background: #1b2f66;
        text-decoration: none !important;
    }
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}



* {
    box-sizing: border-box;
}

.placement-section {
    width: 100%;
    margin: 20px auto;
    font-family: 'Segoe UI',sans-serif;
}

.table-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #274383;
    margin-bottom: 20px;
}

.placement-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

    .placement-table thead {
        background: linear-gradient(135deg,#274383,#274383);
        color: #fff;
    }

    .placement-table th {
        padding: 14px 10px;
        font-size: 15px;
        font-weight: 600;
        border: 1px solid rgba(255,255,255,0.15);
    }

    .placement-table td {
        padding: 12px 10px;
        text-align: left;
        border: 1px solid #e6e6e6;
        font-size: 14px;
    }

    .placement-table tbody tr:nth-child(even) {
        background: #f7fbff;
    }

    .placement-table tbody tr:hover {
        background: #eaf3ff;
    }

    .placement-table tbody td:first-child {
        font-weight: 600;
        color: #274383;
    }

.empty {
    color: #999;
    font-style: italic;
}

/* MOBILE RESPONSIVE */
@media screen and (max-width:768px) {

    .table-title {
        font-size: 22px;
    }

    .placement-table,
    .placement-table thead,
    .placement-table tbody,
    .placement-table th,
    .placement-table td,
    .placement-table tr {
        display: block;
        width: 100%;
    }

        .placement-table thead {
            display: none;
        }

        .placement-table tr {
            margin-bottom: 18px;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border: 1px solid #eee;
        }

        .placement-table td {
            text-align: left;
            padding: 14px 12px;
            position: relative;
            padding-left: 50%;
            border: none;
            border-bottom: 1px solid #f0f0f0;
        }

            .placement-table td:last-child {
                border-bottom: none;
            }

            .placement-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 12px;
                width: 45%;
                text-align: left;
                font-weight: 600;
                color: #274383;
            }
}

