body {
    background-color: #f3f4f6;
    font-family: system-ui, sans-serif;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.title {
    font-size: 24px;
    font-weight: bold;
}

.btn-green { background: #16a34a; }
.btn-green:hover { background: #15803d; }

.btn-red { background: #ef4444; }
.btn-red:hover { background: #dc2626; }

.btn-yellow { background: #f59e0b; }
.btn-yellow:hover { background: #d97706; }

.btn-gray { background: #6b7280; }

/* Grid */
.grid {
    display: grid;
    gap: 20px;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

/* CV cards */
.cv-card {
    margin-bottom: 15px;
}

/* Badge */
.badge {
    background: #e5e7eb;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.label {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
}

.input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    margin-bottom: 10px;
}

.input:focus {
    outline: none;
    border-color: #3b82f6;
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    color: white;
    border: 0;
    cursor: pointer;
}

.btn-blue {
    background: #2563eb;
}

.btn-blue:hover {
    background: #1d4ed8;
}