#user-disk-info {
    margin-top: 0.5em;
    padding-top: 0.5em;
    border-top: 1px solid var(--button-text);
    color: inherit;
    font-size: 15px;
    line-height: 1.5;
}

.info-section {
    margin-bottom: 12px;
}

.section-title {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
}

.drive-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drive-item {
    background: var(--button-bg);
    border: 1px solid var(--button-border);
    border-radius: 6px;
    padding: 8px 10px;
    color: var(--button-text);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: default;
    line-height: 1.2;
    margin: 0;
}

.hfs-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hfs-list-item {
    background: var(--button-bg);
    border: 1px solid var(--button-border);
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hfs-label {
    font-weight: 500;
    color: var(--text);
}

.hfs-value {
    color: var(--button-text);
    font-weight: 400;
}

.status-on {
    color: #22c55e;
}

.status-off {
    color: #ef4444;
}

.drive-item.error,
.hfs-list-item.error {
    background: var(--error-bg, #fee);
    border-color: var(--error-border, #fcc);
    color: var(--error, #c33);
    padding: 6px 8px;
    text-align: center;
    border-radius: 4px;
}

#user-disk-info:empty {
    opacity: 0.7;
    font-style: italic;
}

@media (max-width: 768px) {
    .drive-item {
        padding: 6px 8px;
        font-size: 11px;
    }

    .hfs-list-item {
        padding: 5px 6px;
        font-size: 11px;
    }

    .section-title {
        font-size: 13px;
    }
}

