/* Tailwind CSS Custom Configuration */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Notification Styles */
.notification {
    position: fixed;
    top: 10px;
    right: -400px;
    z-index: 1000;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 2px solid #a56c43;
    max-width: 280px;
    width: calc(100vw - 40px);
    transition: right 0.5s ease-in-out;
}

@media (min-width: 640px) {
    .notification {
        top: 20px;
        padding: 16px;
        max-width: 320px;
        width: auto;
    }
}

.notification.show {
    right: 10px;
}

@media (min-width: 640px) {
    .notification.show {
        right: 20px;
    }
}

.notification-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a56c43, #4b2e2e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 10px;
    font-size: 14px;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .notification-avatar {
        width: 40px;
        height: 40px;
        margin-right: 12px;
        font-size: 16px;
    }
}