body {
    font-family: 'Poppins', sans-serif;
    background: url('../images/calvinbg.png') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    color: #fff;
    overflow-x: hidden;
}

/* Dark Overlay */
body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.search-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 60px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.search-wrapper input {
    border: none;
    outline: none;
    padding: 15px 20px;
    border-radius: 50px;
    width: 100%;
    font-size: 16px;
}

.search-btn {
    background: linear-gradient(135deg, #1e5ed6, #1742a5);
    border: none;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    transition: 0.3s;
    white-space: nowrap;
}

.search-btn:hover {
    transform: scale(1.05);
}

/* Notification */
.notification-box {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    animation: fadeIn 0.6s ease forwards;
}

.notification-box button {
    background: linear-gradient(135deg, #1e5ed6, #1742a5);
    border: none;
    padding: 10px 25px;
    border-radius: 40px;
    color: #fff;
}

/* Popup Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn 0.4s ease forwards;
}

/* Popup */
.popup-box {
    background: rgba(20, 20, 20, 0.95);
    padding: 40px;
    border-radius: 20px;
    width: 95%;
    max-width: 600px;
    text-align: center;
    backdrop-filter: blur(12px);
    animation: scaleIn 0.4s ease forwards;
}

.popup-box:has(.report-list) {
    max-width: 800px !important;
}

.popup-box input {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    margin: 20px 0;
}

.popup-box button {
    background: linear-gradient(135deg, #1e5ed6, #1742a5);
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    color: #fff;
}

.success-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.success-buttons button {
    min-width: 120px;
}

/* Close Icon */
.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #bbb;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media(max-width:768px) {
    .search-wrapper {
        flex-direction: column;
        border-radius: 20px;
    }

    .search-btn {
        width: 100%;
    }
}

.suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 15px;
    margin-top: 8px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.suggestion-item {
    padding: 14px 20px;
    cursor: pointer;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
    text-align: left;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f5f8ff;
}

.suggestion-item.active {
    background: #e6f0ff;
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: #333;
    color: #fff;
    padding: 12px 18px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0.95;
    animation: fadeIn 0.3s ease;
}

.toast.success {
    background: #28a745;
}

.toast.error {
    background: #dc3545;
}

.toast.info {
    background: #007bff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.report-list ul li {
    text-align: left;
    margin-bottom: 20px;
    list-style: none;
}