body {
    background-color: #8B0000; /* Dark Red */
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex-direction: column;
    position: relative;
}

/* Bottom-right notification image */
#notification {
    width: 35%; /* Increased by 25% */
    height: auto;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

#notification:hover {
    transform: scale(1.05);
}

/* Centered Quick Scan image */
#quick-scan {
    width: 700px; /* Adjust as needed */
    height: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}
