.notice-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notice {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.notice.show {
    opacity: 1;
    transform: translateX(0);
}

.notice.success {
    background-color: #27ae60;
}

.notice.error {
    background-color: #e74c3c;
}

.notice.info {
    background-color: #3498db;
}

.notice-close {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background: none;
    border: none;
}
