#content {
    z-index: auto !important;
}

#dt-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.dt-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    margin: 15px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dt-modal-content h4 {
    color: rgb(255, 0, 0);
}

#dt-backdrop.show .dt-modal-content {
    opacity: 1;
    transform: scale(1);
}

#dt-close-backdrop {
    background: rgb(2, 123, 255);
    color: white;
    border-radius: 7px;
}

.singpass-prefilled {
    background-color: #f0f0f0 !important;
}