.ghl-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.ghl-modal-content {
    position: relative;
    background-color: #fff;
    margin: 50px auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ghl-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ghl-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.ghl-close {
    cursor: pointer;
    font-size: 24px;
    color: #6b7280;
}

.ghl-modal-body {
    padding: 24px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.ghl-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
}

.ghl-tab {
    background: none;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    position: relative;
}

.ghl-tab.active {
    color: #2563eb;
    font-weight: 500;
}

.ghl-tab.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2563eb;
}

.ghl-form-group {
    margin-bottom: 20px;
}

.ghl-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.ghl-form-group select,
.ghl-form-group input[type="text"],
.ghl-form-group input[type="date"],
.ghl-form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #111827;
}

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

.ghl-add-description {
    display: inline-block;
    margin-top: 8px;
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
}

.ghl-timezone {
    background-color: #f3f4f6;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.ghl-timezone p {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #6b7280;
}

.ghl-slot-selector {
    display: flex;
    gap: 16px;
}

.ghl-date-picker,
.ghl-time-slots {
    flex: 1;
}

.ghl-search-input {
    position: relative;
}

.ghl-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ghl-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.ghl-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
}

.ghl-btn-primary {
    background-color: #2563eb;
    color: white;
}

.ghl-btn-primary:hover {
    background-color: #1d4ed8;
}

.ghl-btn-secondary {
    background-color: white;
    border-color: #d1d5db;
    color: #374151;
}

.ghl-btn-secondary:hover {
    background-color: #f3f4f6;
}