/* Custom Alerts Overlay */
.custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.custom-overlay.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.custom-box {
    background: #1a1e26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #FF4D00;
    /* Primary Orange */
    padding: 30px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 0;
    /* Requested: No border radius */
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-overlay.active .custom-box {
    transform: scale(1);
}

.custom-msg {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.custom-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    width: 100%;
    font-size: 1rem;
    outline: none;
    border-radius: 0;
    /* Requested */
    font-family: inherit;
    display: none;
}

.custom-input:focus {
    border-color: #FF4D00;
}

.custom-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
}

.custom-btn {
    padding: 12px 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    border-radius: 0;
    /* Requested */
    transition: 0.2s;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
}

.custom-btn.confirm {
    background: #FF4D00;
    color: #fff;
}

.custom-btn.confirm:hover {
    background: #ff6a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 77, 0, 0.3);
}

.custom-btn.cancel {
    background: transparent;
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-btn.cancel:hover {
    border-color: #fff;
    color: #fff;
}