.ticket-form-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 20px;
}

.step-indicator {
    margin-bottom: 30px;
}

.step-indicator .progress {
    background-color: #e9ecef;
    border-radius: 10px;
}

.step-indicator .progress-bar {
    background-color: #005d5b;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.step-indicator #step-text {
    font-size: 16px;
    font-weight: 600;
    color: #005d5b;
}

/* Tooltip Styles */
.tooltip-container {
    position: relative;
    display: block;
}

.tooltip {
    position: absolute;
    background: #dc3545;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    top: -45px;
    left: 0;
    margin-bottom: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 10px;
    border-width: 5px;
    border-style: solid;
    border-color: #dc3545 transparent transparent transparent;
}

.tooltip.show {
    opacity: 1;
    visibility: visible;
}

.info-box {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.info-box.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.info-box.info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

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

.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #005d5b;
    box-shadow: 0 0 0 0.2rem rgba(0, 93, 91, 0.18);
}

.phone-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.phone-code {
    flex-shrink: 0;
    width: 80px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: #005d5b;
}

.phone-code-input {
    flex-shrink: 0;
    width: 80px;
    max-width: 100px;
}

.phone-number {
    flex: 1;
}

.form-check {
    margin-bottom: 15px;
}

.form-check-input:checked {
    background-color: #005d5b;
    border-color: #005d5b;
}

.form-check-label {
    font-size: 14px;
    line-height: 1.4;
}

.form-check-label a {
    color: #005d5b;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.btn-next {
    background: #005d5b;
    border-color: #005d5b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-next:hover {
    background: #00807e;
    border-color: #00807e;
    color: #fff;
}

.btn-next:disabled {
    background: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}
