/* Storage usage display styles */
.storage-status {
    margin: 1em 0;
    padding: 1em;
    border-radius: 8px;
    /*background-color: #efefef;*/
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}

.storage-info h4 {
    margin: 0.5em 0;
    font-size: 1.1em;
}

.storage-progress-container {
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 0.5em 0;
}

.storage-progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.storage-progress-bar.green {
    background-color: #4caf50;
}

.storage-progress-bar.orange {
    background-color: #ff9800;
}

.storage-progress-bar.red {
    background-color: #f44336;
}

.storage-warning {
    margin-top: 1em;
    padding: 0.8em;
    background-color: #ffeeee;
    border-left: 5px solid #f44336;
    color: #333;
    font-weight: bold;
    border-radius: 4px;
}