body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

input[type="file"] {
    margin-bottom: 1rem;
}

textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
}

.stats-container {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 0;
    text-align: left;
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stats-header, .stats-row {
    display: flex;
    padding: 0.75rem 1rem;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.stats-header {
    background-color: #e9ecef;
    font-weight: bold;
    color: #495057;
}

.stats-row:last-child {
    border-bottom: none;
}

.stats-row:nth-child(even) {
    background-color: #f1f3f5;
}

.stats-label {
    flex: 2;
    text-align: left;
    font-weight: bold;
}

.stats-bytes {
    flex: 1.5;
    text-align: right;
}

.stats-mb {
    flex: 1.5;
    text-align: right;
}

.stats-percent {
    flex: 1;
    text-align: right;
}

.stats-row:last-child .stats-percent {
    color: #d35400;
    font-weight: bold;
}

/* Make numbers monospaced for better alignment */
.stats-bytes span, 
.stats-mb span, 
.stats-percent span {
    font-family: monospace;
    font-size: 0.95rem;
}

/* Add hover effect */
.stats-row:hover {
    background-color: #e2e6ea;
}
