#employment-history-container {
    --employment-entry-margin-bottom: 16px;
    --employment-entry-radius: var(--radius-xl);
    --employment-date-gap: 15px;
    --employment-date-label-font-size: 12px;
    --employment-date-label-margin-bottom: 5px;
    --employment-checkbox-size: 20px;
    --employment-checkbox-font-size: 16px;
    --employment-checkbox-margin-right: 8px;
    --employment-remove-padding: 7px 12px;
    --employment-remove-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
}

.employment-history-container {
    margin-top: 10px;
}

.employment-history-helper {
    margin: 0 0 8px 0;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.employment-entry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.employment-date-group {
    margin-top: 10px;
    margin-bottom: 0;
}

.date-select-item-year {
    min-width: 100px;
}

.employment-entry .form-group select {
    background-image: linear-gradient(45deg, transparent 50%, var(--gray-500) 50%), linear-gradient(135deg, var(--gray-500) 50%, transparent 50%);
    background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    appearance: none;
    padding-right: 32px;
}

.employment-entry .form-group select:focus,
.employment-entry .form-group input[type="text"]:focus {
    outline: none;
    border-color: #029cd4;
    box-shadow: 0 0 0 4px rgba(2, 156, 212, 0.15), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.employment-date-hint {
    margin: 10px 0 0 0;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.employment-history-actions {
    margin-top: 8px;
}

.employment-history-actions .button {
    min-width: 240px;
}

.employment-history-limit {
    margin: 8px 0 0 0;
    font-size: 0.85rem;
    color: var(--gray-500);
}

@media (max-width: 820px) {
    .employment-entry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .date-select-item {
        min-width: 100%;
    }

    .employment-history-actions .button {
        width: 100%;
        min-width: 0;
    }
}
