﻿.disk-usage-container {
    width: 100%;
    max-width: 400px;
    margin: 0px 0;
    font-family: sans-serif;
}

.disk-usage-bar {
    position: relative;
    height: 25px;
    background-color: #8c8c8c; /* Darker grey for free space */
    border-radius: 12px;
    overflow: hidden;
}

.disk-usage-used {
    height: 100%;
    background-color: #3b3b3b; /* Dark grey for used space */
    border-radius: 12px 0 0 12px;
    transition: width 0.5s ease-in-out;
}

.disk-usage-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    font-size: 0.8em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
