/* ==========================================
   Notification Container Styles
   ========================================== */

.notification-container {
    position: fixed;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    width: 400px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: bottom 0.4s ease-in-out;
    font-family: Webparseh-R, Arial, sans-serif;
}

.notification-container.show {
    bottom: 20px;
}

.notification-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c1b5f;
    margin-bottom: 0.5rem;
    text-align: right;
}

.notification-status {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    text-align: right;
    margin-bottom: 1rem;
}

.notification-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #2c1b5f 0%, #5a3d9f 100%);
    color: white;
    font-family: Webparseh-R, Arial, sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 27, 95, 0.3);
}

.notification-button:active {
    transform: translateY(0);
}

.notification-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.notification-container .btn-close {
    position: absolute;
    top: 10px;
    left: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.notification-container .btn-close:before {
    content: '×';
}

.notification-container .btn-close:hover {
    color: #333;
}

/* Dark Mode Support */
.dark-mode .notification-container {
    background: #1a1a2e;
    color: #fff;
}

.dark-mode .notification-title {
    color: #ffd762;
}

.dark-mode .notification-status {
    color: #ccc;
}

.dark-mode .notification-container .btn-close {
    color: #999;
}

.dark-mode .notification-container .btn-close:hover {
    color: #fff;
}

