/* Meeting Gadget 2 Public Styles */

.meetinggad2-booking-form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 15px;
    background: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(0,0,0,0.1);
}

/* Progress Indicator */
.meetinggad2-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.meetinggad2-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.meetinggad2-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.meetinggad2-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.meetinggad2-step.active .meetinggad2-step-number {
    background: #007cba;
    color: #fff;
}

.meetinggad2-step.completed .meetinggad2-step-number {
    background: #28a745;
    color: #fff;
}

.meetinggad2-step-label {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.meetinggad2-step.active .meetinggad2-step-label {
    color: #007cba;
    font-weight: 600;
}

/* Form Steps */
.meetinggad2-form-step {
    display: none;
}

.meetinggad2-form-step.active {
    display: block;
}

.meetinggad2-form-row {
    margin-bottom: 15px;
}

.meetinggad2-form-row label {
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.meetinggad2-form-row .required {
    color: #dc3545;
}

.meetinggad2-form-row input,
.meetinggad2-form-row select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.meetinggad2-form-row input:focus,
.meetinggad2-form-row select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.meetinggad2-form-row input.error,
.meetinggad2-form-row select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

/* Form Actions */
.meetinggad2-form-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.meetinggad2-prev-btn,
.meetinggad2-next-btn,
.meetinggad2-submit-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1;
}

.meetinggad2-prev-btn {
    background: #6c757d;
    color: #fff;
}

.meetinggad2-prev-btn:hover {
    background: #545b62;
}

.meetinggad2-next-btn,
.meetinggad2-submit-btn {
    background: #007cba;
    color: #fff;
}

.meetinggad2-next-btn:hover,
.meetinggad2-submit-btn:hover {
    background: #005a87;
}

.meetinggad2-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.meetinggad2-response {
    margin-top: 15px;
    padding: 8px;
    border-radius: 4px;
    display: none;
    font-size: 14px;
}

.meetinggad2-response.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.meetinggad2-response.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive design */
@media (max-width: 480px) {
    .meetinggad2-booking-form-container {
        margin: 0 5px;
        padding: 10px;
        max-width: 100%;
    }

    .meetinggad2-form-actions {
        flex-direction: column;
    }

    .meetinggad2-prev-btn,
    .meetinggad2-next-btn,
    .meetinggad2-submit-btn {
        margin-bottom: 5px;
    }
}
