.employee-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100;
    padding: 1rem;
    overflow-y: auto;
}

.employee-panel.active {
    right: 0;
}

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

.panel-header h2 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.employee-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.employee-item {
    background: var(--background-color);
    padding: 0.75rem;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.employee-info {
    flex: 1;
}

.employee-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.employee-availability {
    font-size: 0.85rem;
    color: #666;
}

.employee-actions {
    display: flex;
    gap: 0.5rem;
}

.employee-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.employee-input {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
}

.availability-editor {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.time-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.availability-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.availability-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-color);
    padding: 0.5rem;
    border-radius: 4px;
}

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}