/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 13 Jul, 2026, 1:50:15 PM
    Author     : nic
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,Arial,sans-serif;
}

body{

    background:#f2f5f9;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/* Header */

.header{

    width:100%;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.banner{

    width:100%;
    display:block;
}

/* Main */

.container{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    padding:40px 15px;
}

.search-card{

    background:#fff;

    width:100%;

    max-width:1250px;

    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    padding:40px;
}

.search-card h2{

    text-align:center;

    color:#0b4f8a;

    margin-bottom:10px;
}

.subtitle{

    text-align:center;

    color:#666;

    margin-bottom:35px;
}

.search-box{

    width:100%;

    padding:15px;

    font-size:16px;

    border:1px solid #ccc;

    border-radius:6px;

    transition:.3s;
}

.search-box:focus{

    outline:none;

    border-color:#0b5ed7;

    box-shadow:0 0 8px rgba(13,110,253,.25);
}

.btnSearch{

    margin-top:20px;

    background:#0d6efd;

    color:white;

    border:none;

    padding:13px 35px;

    border-radius:5px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;
}

.btnSearch:hover{

    background:#084298;
}

/* Table */

.table-container{

    overflow-x:auto;

    margin-top:40px;
}

table{

    width:100%;

    border-collapse:collapse;
}

table th{

    background:#0d6efd;

    color:white;

    padding:14px;

    text-transform:uppercase;

    font-size:14px;
}

table td{

    padding:12px;

    border-bottom:1px solid #ddd;

    text-align:center;
}

table tr:nth-child(even){

    background:#f8f9fa;
}

table tr:hover{

    background:#eef6ff;
}

/* Download Button */

.download-btn{

    display:inline-block;

    background:#198754;

    color:white;

    text-decoration:none;

    padding:8px 18px;

    border-radius:4px;

    transition:.3s;
}

.download-btn:hover{

    background:#146c43;
}

/* Footer */

footer{

    background:white;

    border-top:1px solid #ddd;

    padding:18px;

    text-align:center;

    color:#666;

    font-size:14px;
}

/* Mobile */

@media(max-width:768px){

.search-card{

padding:20px;
}

.search-card h2{

font-size:22px;
}

.btnSearch{

width:100%;
}

}