/* ============================= */
/* 🔹 HEADER STYLING */
/* ============================= */
.page-header {
    position: relative;
    height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* ✅ Transparent Banner Image */
.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../assets/images/custom-header.jpg') no-repeat center top / cover;
    opacity: 0.5;
    z-index: -1;
}

/* ✅ Floating Title */
.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 6px 6px 12px rgba(0, 0, 0, 0.75);
}

/* ✅ Floating Banner Text */
.floating-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    z-index: 2;
    white-space: nowrap; /* ✅ Prevents text from breaking */
    
    /* ✅ Floating Animation */
    animation: floating 4s ease-in-out infinite;
}

/* ✅ Keyframe Animation for Floating Effect */
@keyframes floating {
    0% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-15px); } /* Moves up */
    100% { transform: translate(-50%, -50%) translateY(0px); } /* Moves back */
}

.droplist-container {
    max-width: 90%;
    margin: 40px auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    margin-top: 100px;
    margin-bottom: 350px;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

#searchBox {
    width: 80%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 20, 20, 0.9);
}

th, td {
    border: 1px solid #444;
    padding: 10px;
    text-align: left;
}

th {
    background: #222;
    color: #ffcc00;
}

td span {
    display: block;
    color: #bbb;
}

tr:nth-child(even) {
    background: rgba(30, 30, 30, 0.8);
}

tr:hover {
    background: rgba(50, 50, 50, 0.9);
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 2px;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.pagination a.active {
    background-color: #d4af37;
    font-weight: bold;
}

.pagination a:hover {
    background-color: #444;
}

/* ============================= */
/* 🔹 FOOTER POSITIONING & SPACING */
/* ============================= */
footer {
    padding: 0px 500px;  /* ✅ Adds top & bottom padding */
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    font-size: 1rem;
    border-top: 0px solid rgba(255, 255, 255, 0.3);
}

