/* General body font settings */
body {
    font-family: Arial, Helvetica, sans-serif;
}

/* Notification CSS */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 300px;
}

.notification {
    background-color: rgba(16, 12, 20, 0.4); /* Very transparent version of #100c14 */
    backdrop-filter: blur(15px); /* Increase blur effect for more glassy appearance */
    color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px 5px rgba(67, 160, 71, 0.5); /* Glowy green border */
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: blink-in 0.5s forwards, fade-out 0.5s forwards;
    position: relative;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif; /* Apply sans-serif font to notifications */
}

.notification.hide {
    animation: blink-out 0.5s forwards;
}

.notification-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.notification-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.notification-text {
    display: flex;
    flex-direction: column;
}

.notification-close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: #43A047;
    animation: progress linear;
}

@keyframes blink-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes blink-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes progress {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .notification-container {
        width: 280px;
        top: 10px;
        right: 10px;
    }

    .notification {
        padding: 12px;
        font-size: 14px;
    }

    .notification-icon {
        width: 18px;
        height: 18px;
    }

    .notification-close {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .notification-container {
        width: 240px;
        top: 5px;
        right: 5px;
    }

    .notification {
        padding: 10px;
        font-size: 12px;
    }

    .notification-icon {
        width: 16px;
        height: 16px;
    }

    .notification-close {
        font-size: 14px;
    }
}
