/* Button in itinerary heading */
.togo-st-itinerary .togo-st-heading-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lv-itin-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border-radius: 62px;
  border: 1px solid rgba(15,23,42,.12);
  background: #033f88;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
}

.lv-itin-btn:hover{
  border-color: rgba(15,23,42,.24);
}

/* Modal */
.lv-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lv-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    cursor: pointer;
}

.lv-modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 440px;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 2;
    animation: lvFadeIn 0.3s ease-out;
}

@keyframes lvFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.lv-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.lv-modal-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.lv-modal-sub {
    margin: 0 0 24px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.lv-field {
    margin-bottom: 16px;
}

.lv-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.lv-field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s;
}

.lv-field input:focus {
    border-color: #033f88;
    outline: none;
    box-shadow: 0 0 0 2px rgba(3,63,136,0.1);
}

.lv-actions {
    margin-top: 24px;
}

.lv-submit-btn {
    width: 100%;
    padding: 12px;
    background: #033f88;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.lv-submit-btn:hover {
    background: #022a5c;
}

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

.lv-message {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    display: none;
}
