/* ============================= */
/*       MINIMAL NOTIFICATION     */
/* ============================= */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
    width: auto;
    max-width: 450px;
    padding: 0 16px;
    box-sizing: border-box;
}

.alert-notification {
    background: #ffffff;
    color: #333333;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;

    display: flex;
    align-items: center;
    gap: 10px;

    border-bottom: 3px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Optional: Remove if you don’t use icons */
.alert-notification img {
    height: 20px;
    width: 60px;
    flex-shrink: 0;
}

.alert-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Notification types: define border-bottom colors only */
.alert-success {
    border-bottom-color: #4caf50 !important;
}

.alert-error {
    border-bottom-color: #f44336 !important;
}

.alert-alert {
    border-bottom-color: #ff9800 !important;
}

.alert-info {
    border-bottom-color: #009dff !important;
}

/* Shared Overlay */
#custom-alert-overlay,
#custom-prompt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Shared Box Styling */
#custom-alert-box,
#custom-prompt-box {
    background: #fff;
    padding: 30px 24px;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
    position: relative;
    font-family: Arial, sans-serif;
}

.modal-logo {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 240px;
    height: auto;
}

/* Alert Message Styling */
#custom-alert-message,
#custom-prompt-message {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 6px;
    background: #f8f8f8;
    border: 1px solid #ddd;
}

/* Prompt Input */
#custom-prompt-input {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: #fafafa;
}

#custom-prompt-input:focus {
    outline: 2px solid #e4bc1c;
}

/* Buttons Row */
#custom-alert-buttons,
#custom-prompt-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

/* Button Styling */
#custom-alert-buttons button,
#custom-prompt-buttons button {
    flex: 1;
    padding: 12px 0;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-weight: 600;
}

#custom-alert-confirm,
#custom-prompt-confirm {
    background-color: #e4bc1c;
    color: white;
}

#custom-alert-cancel,
#custom-prompt-cancel {
    background-color: #d0d0d0;
    color: #333;
}

#custom-alert-confirm:hover,
#custom-prompt-confirm:hover {
    background-color: #caa615;
}

#custom-alert-cancel:hover,
#custom-prompt-cancel:hover {
    background-color: #bbb;
}