.add-employee-container {
    padding: 24px 32px;
    background-color: #F9FAFB;
    min-height: 100vh;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.breadcrumb-item {
    color: #6B7280;
}

.breadcrumb-item.active {
    color: #111827;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #D1D5DB;
}

/* Page Title Section */
.page-title-section {
    margin-bottom: 24px;
}

.page-title {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    margin: 0;
}

/* Main Header */
.main-header {
    margin-bottom: 24px;
}

.header-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.header-subtitle {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

/* Alert Banner */
.alert-banner {
    display: flex;
    gap: 16px;
    padding: 16px;
    background-color: #FEF3C7;
    border: 1px solid #FDE68A;
    border-radius: 8px;
    margin-bottom: 24px;
}

.alert-icon {
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 14px;
    font-weight: 600;
    color: #92400E;
    margin-bottom: 4px;
}

.alert-description {
    font-size: 14px;
    color: #92400E;
}

/* Status Cards */
.status-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.status-card {
    background-color: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 20px;
}

.status-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6B7280;
}

.status-card-count {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
}

/* Action Bar */
.action-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.search-box {
    flex: 0 1 480px;
    max-width: 480px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #111827;
}

.search-box input::placeholder {
    color: #9CA3AF;
}

.btn-add-new-hire {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #2563EB;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-add-new-hire:hover {
    background-color: #1D4ED8;
}

/* Table */
.table-container {
    background-color: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

.new-hires-table {
    width: 100%;
    border-collapse: collapse;
}

.new-hires-table thead {
    background-color: #F9FAFB;
}

.new-hires-table th {
    padding: 12px 24px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #E5E7EB;
}

.new-hires-table td {
    padding: 16px 24px;
    font-size: 14px;
    color: #111827;
    border-bottom: 1px solid #E5E7EB;
}

.new-hires-table tbody tr:last-child td {
    border-bottom: none;
}

.new-hires-table tbody tr:hover {
    background-color: #F9FAFB;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    text-align: center;
}

.empty-state svg {
    margin-bottom: 24px;
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.empty-state p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.modal-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 32px 0;
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.form-group .required {
    color: #EF4444;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background-color: white;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder {
    color: #9CA3AF;
}

.form-group input:disabled,
.form-group select:disabled {
    background-color: #F3F4F6;
    color: #9CA3AF;
    cursor: not-allowed;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-cancel,
.btn-create {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-cancel {
    background-color: white;
    color: #374151;
    border: 1px solid #D1D5DB;
}

.btn-cancel:hover {
    background-color: #F9FAFB;
}

.btn-create {
    background-color: #2563EB;
    color: white;
}

.btn-create:hover {
    background-color: #1D4ED8;
}

.btn-create:disabled {
    background-color: #D1D5DB;
    color: #9CA3AF;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .add-employee-container {
        padding: 16px;
    }

    .status-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .status-cards {
        grid-template-columns: 1fr;
    }

    .header-title {
        font-size: 24px;
    }
}
