/* styles/components/mobile.css */
#offline-message {
    background-color: #f44336;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    font-weight: bold;
}

.storage-warning {
    background-color: #ff9800;
    color: white;
    border-radius: 5px;
    padding: 15px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: slideUp 0.5s ease-out;
}

.storage-warning p {
    margin: 0 0 10px 0;
}

.close-warning {
    background-color: white;
    color: #ff9800;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    /* Các điều chỉnh khác cho di động */
}
