* {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    margin: 0;
    background: #f4f6f8;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

h1 {
    margin-top: 0;
    font-size: 26px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

label {
    font-size: 14px;
    font-weight: 600;
}

input, select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

input:focus, select:focus {
    outline: none;
    border-color: #007bff;
}

button {
    grid-column: 1 / -1;
    padding: 12px;
    font-size: 16px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lang a {
    margin-left: 10px;
    text-decoration: none;
    font-weight: bold;
    color: #007bff;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.table th {
    background: #f0f2f4;
}

.actions a {
    color: #c00;
    text-decoration: none;
}

.success {
    padding: 12px;
    background: #e6f7e6;
    border: 1px solid #b5e0b5;
    border-radius: 6px;
    margin-bottom: 15px;
}
.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-box {
    background: #f0f2f4;
    padding: 16px 20px;
    border-radius: 8px;
    min-width: 200px;
}
