/* =========================
   GEET – ELIGIBILITY TOOL UI (FINAL)
========================= */

/* Wrapper */
.geet-tool-box {
    max-width: 720px;
    margin: 30px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

/* Heading */
.geet-tool-box h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #1f2937;
}

/* Field wrapper */
.geet-field {
    margin-bottom: 16px;
}

/* Label */
.geet-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
}

/* Inputs & Select */
.geet-field input,
.geet-field select {
    width: 100%;
    height: 46px;
    padding: 10px 12px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    box-sizing: border-box;
}

.geet-field input:focus,
.geet-field select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* Button */
.geet-check-btn {
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}

/* Result box */
.geet-result {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    font-size: 15px;
}

.geet-result.success {
    background: #e6f4ea;
    color: #146c43;
}

.geet-result.error {
    background: #fdecea;
    color: #842029;
}

/* Eligible jobs list */
.geet-eligible-jobs {
    margin-top: 10px;
    padding-left: 18px;
}

.geet-eligible-jobs li {
    margin-bottom: 6px;
}

/* Apply link */
.geet-apply-link {
    margin-left: 6px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.geet-apply-link:hover {
    text-decoration: underline;
}

/* Department buttons */
.geet-job-list {
    display:block;
    width:100%;
    margin:35px 0;
    text-align:center;
}
.geet-job-btn {
    display: inline-block;
    padding: 20px 48px;
    text-align: center;
    background: #000;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin:10px 12px;
    position:relative;
    overflow:hidden;
    transition:all .25s ease;
}

/* Inner top blue curved strip */
.geet-job-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:1px;
    right:1px;
    height:8px;
    background:#5b6cff;
}

.geet-admin-card{
    background:#fff;
    padding:28px;
    border-radius:14px;
    box-shadow:0 8px 24px rgba(0,0,0,0.08);
    margin-top:20px;
}

.geet-input{
    width:100%;
    padding:12px 14px;
    margin-bottom:16px;
    border:1px solid #ccd0d4;
    border-radius:10px;
    font-size:14px;
}

.geet-input:focus{
    border-color:#2271b1;
    outline:none;
    box-shadow:0 0 0 2px rgba(34,113,177,.2);
}

.geet-btn{
    background:#2271b1;
    color:#fff;
    padding:10px 20px;
    border:none;
    border-radius:10px;
    font-size:14px;
    cursor:pointer;
}

.geet-btn:hover{
    background:#135e96;
}

/* Table */
.geet-table{
    width:100%;
    border-collapse:collapse;
    margin-top:15px;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
}

.geet-table th{
    background:#f1f6fb;
    padding:12px;
    text-align:left;
    font-weight:600;
}

.geet-table td{
    padding:12px;
    border-top:1px solid #eee;
}

.geet-table tr:hover{
    background:#f9fbfd;
}

.geet-check{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#f1f6fb;
    padding:8px 14px;
    border-radius:30px;
    cursor:pointer;
    border:1px solid #d0d7e2;
    transition:0.2s ease;
    font-weight:600;
}

.geet-check input{
    color:#2271b1;
    width:16px;
    height:16px;
}

.geet-check:hover{
    background:#e7f1fb;
    border-color:#2271b1;
}

.geet-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}
.geet-full{
    grid-column:1 / -1;
}
.geet-check-btn:hover,
.geet-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 6px 14px rgba(37,99,235,.25);
}
.geet-table thead th{
    position:sticky;
    top:0;
    z-index:2;
}
.geet-job-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 22px rgba(0,0,0,0.12);
}
.geet-note{
    margin:15px 0;
    padding:12px 14px;
    background:#eef6ff;
    border-left:4px solid #2271b1;
    border-radius:8px;
}

.geet-table td .button{
    margin-right:8px;
}

/* Mobile */
@media (max-width: 600px) {
    .geet-tool-box {
        padding: 18px;
    }
}
