:root {
    --bg-primary: #faf8f5;
    --bg-secondary: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --accent: #c9a96e;
    --accent-hover: #b8956a;
    --border: #e8e4df;
    --locked-color: #e57373;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding: 16px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.header h1 {
    font-size: 20px;
    font-weight: 600;
}

.quota-display {
    background: var(--bg-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.filters {
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.search-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.slider-group {
    margin-bottom: 12px;
}

.slider {
    width: 100%;
    margin: 8px 0;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-download {
    width: 100%;
    padding: 14px;
    background: #4a90d9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.btn-download:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.community-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
}

.community-table th,
.community-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.community-table th {
    background: #f5f3f0;
    font-weight: 600;
    font-size: 13px;
}

.locked-badge {
    background: var(--locked-color);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
}