:root {
    --bg: #1a1b1e;
    --card: #25262b;
    --text: #c1c2c5;
    --border: #2c2e33;
    --green: #40c057;
    --red: #fa5252;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 20px;
    display: flex; justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
}

.header {
    margin-bottom: 20px;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.header p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #909296;
}

.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:hover {
    background-color: rgba(255,255,255,0.02);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.name {
    font-weight: 500;
    color: #e9ecef;
}

.status {
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.status.success {
    color: var(--green);
    background: rgba(64, 192, 87, 0.1);
}

.status.error {
    color: var(--red);
    background: rgba(250, 82, 82, 0.1);
}

.summary {
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #909296;
    background: rgba(0,0,0,0.1);
}
