/* Background Image */
body{
    margin:0;
    font-family:'Segoe UI', Arial, sans-serif;
    background:#f5f7fb;
    position:relative;
}

body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background-image:url('https://lh3.googleusercontent.com/d/1zPVVp8-fVU3cG6-YN3E3MbEwUmI2tRSb');
    background-repeat:no-repeat;
    background-position:center;
    background-size:70%;

    opacity:0.50;   /* Adjust 0.03–0.10 */
    z-index:-1;
}

/* Header */
.header{
    background:linear-gradient(135deg,#002147,#003d7a);
    color:white;
    padding:15px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.header-mhwb{
    background:linear-gradient(135deg,#1b5e20,#43a047);
}

.header-pewp{
    background:linear-gradient(135deg,#0d47a1,#1976d2);
}

.header-reccb{
    background:linear-gradient(135deg,#5d4037,#8d6e63);
}
.header-smsw{
    background:linear-gradient(135deg,#773ce4,#4206f6);
}
.logo{
    height:90px;
}

.title{
    text-align:center;
    flex:1;
}

.title h1{
    margin:0;
    font-size:32px;
}

.title p{
    margin:5px 0;
}
/* Header text */
#eventTitle{
    color: white;
}
#eventSubTitle{
    color: white;
}
/* Search Area */
.search-box{
    text-align:center;
    margin:40px auto;
}

.search-box input{
    width:350px;
    max-width:90%;
    padding:12px;
    border:2px solid #002147;
    border-radius:8px;
    font-size:16px;
}
.field-label{
    display:block;
    text-align:left;
    font-weight:600;
    margin-bottom:8px;
    color:#2c3e50;
}
/* Event Dropdown */

#eventSelect{
    width:100%;
    max-width:600px;
    padding:14px 18px;
    font-size:16px;
    font-weight:500;
    color:#333;
    background:#fff;
    border:2px solid #c8d6e5;
    border-radius:10px;
    outline:none;
    cursor:pointer;
    transition:all 0.3s ease;
    margin-bottom:15px;
    box-sizing:border-box;
}

#eventSelect:hover{
    border-color:#8e44ad;
}

#eventSelect:focus{
    border-color:#6c3483;
    box-shadow:0 0 10px rgba(108,52,131,0.25);
}

/* Disabled State */

#eventSelect:disabled{
    background:#f5f5f5;
    cursor:not-allowed;
    opacity:0.7;
}
#eventTitle{
    font-size:20px;
    font-weight:700;
    color:#5a2d0c;
    margin:5px 0;
}

#eventSubTitle{
    font-size:15px;
    color:#555;
    margin:0;
}
.search-box button{
    padding:12px 20px;
    background:#002147;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.search-box button:hover{
    background:#004a99;
}

/* Result Card */
.card{
    max-width:1100px;
    margin:30px auto;
    background:white;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    overflow:hidden;
}

.status{
    background:#198754;
    color:white;
    text-align:center;
    font-size:24px;
    font-weight:bold;
    padding:15px;
}

table{
    width:100%;
    border-collapse:collapse;
}

td{
    padding:12px;
    border:1px solid #ddd;
}

td:first-child{
    width:35%;
    font-weight:bold;
    background:#eef4ff;
}

.actions{
    text-align:center;
    padding:25px;
}

.btn{
    display:inline-block;
    padding:12px 20px;
    margin:5px;
    background:#198754;
    color:white;
    text-decoration:none;
    border-radius:6px;
}

.footer{
    text-align:center;
    padding:20px;
    color:#666;
}

.notfound{
    color:red;
    text-align:center;
    font-size:22px;
    padding:30px;
}
.verify-card {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    text-align: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-top: 4px solid #0d6efd;
    animation: fadeIn 0.4s ease-in-out;
}

.verify-card h3 {
    margin: 15px 0 10px;
    color: #0d6efd;
    font-size: 22px;
}

.verify-card p {
    color: #666;
    margin: 0;
    font-size: 15px;
}

.spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 5px solid #e9ecef;
    border-top: 5px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}