.guest-info-container {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

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

.guest-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guest-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.requirement-badge {
    font-size: 12px;
    color: #dc3545;
    font-weight: 500;
}

.add-saved-guest {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1976D2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.add-saved-guest:hover {
    background-color: rgba(25, 118, 210, 0.08);
}

.gender-selection {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.gender-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gender-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #1976D2;
}

.gender-option label {
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #1976D2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

.phone-input-group {
    display: flex;
    gap: 8px;
}

.country-code-select {
    width: 120px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1976D2;
}

.checkbox-group label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.guest-section-collapsible {
    margin-top: 16px;
}

.collapse-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
}

.collapse-header h4 {
    margin: 0;
    font-size: 16px;
    color: #1a1a1a;
}

.collapse-icon {
    transition: transform 0.2s;
}

.collapsed .collapse-icon {
    transform: rotate(180deg);
} 