/* assets/css/update-notice.css */
#update-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e6b767;
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.update-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.update-content p {
    margin: 0;
    font-size: 14px;
}

#refresh-page, #dismiss-update {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

#refresh-page {
    background: #c57e3b;
    color: white;
}

#dismiss-update {
    background: #7f8c8d;
    color: white;
}