/* Reset and Base Styles */* {    margin: 0;    padding: 0;    box-sizing: border-box;}body {    font-family: 'Arial', sans-serif;    line-height: 1.6;    color: #333;    background-color: #FAF0E6; /* Linen */    overflow-x: hidden;}/* Animations */@keyframes fadeIn {    from {        opacity: 0;        transform: translateY(20px);    }    to {        opacity: 1;        transform: translateY(0);    }}.fade-in {    animation: fadeIn 1s ease-out;}@keyframes slideInLeft {    from {        opacity: 0;        transform: translateX(-50px);    }    to {        opacity: 1;        transform: translateX(0);    }}.slide-in-left {    animation: slideInLeft 1s ease-out;}@keyframes slideInRight {    from {        opacity: 0;        transform: translateX(50px);    }    to {        opacity: 1;        transform: translateX(0);    }}.slide-in-right {    animation: slideInRight 1s ease-out;}/* Responsive Design */@media (max-width: 768px) {    body {        font-size: 14px;    }}@media (max-width: 480px) {    body {        font-size: 13px;    }}
/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: -400px;
    max-width: 400px;
    min-width: 300px;
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: right 0.3s ease-in-out;
    animation: slideInNotification 0.3s ease-out;
}

.notification.show {
    right: 20px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    font-size: 24px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    background: #d4edda;
    color: #155724;
}

.notification-error .notification-icon {
    background: #f8d7da;
    color: #721c24;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

@keyframes slideInNotification {
    from {
        right: -400px;
        opacity: 0;
    }
    to {
        right: 20px;
        opacity: 1;
    }
}

/* Mobile responsive for notifications */
@media (max-width: 480px) {
    .notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
        min-width: auto;
        top: 10px;
    }
    
    .notification.show {
        right: 10px;
    }
}
