/* Place holder */
/* #id_salutation { color: red; } */

/* In general, want notes field to be this size on all forms */
/* #id_notes { */
div .vLargeTextField {
    height: 50px;
    width: 400px;
}

.highlight {
    background-color: #BBD1E8;
}

/* Make the SelectMultiple filter_horizontal widget of ManyToMany models wider */
.selector {
    width: 1040px;
}

.selector-available, .selector-chosen, select.filtered {
    width: 500px;
}

.search-detail-title h3 {
background: rgb(210,190,160) url('/static/images/nav-bg.png') repeat-x scroll left top;
border-bottom:1px solid #DDDDDD;
/* color:#666666; */
/* font-size:11px; */
margin:0;
padding:3px 5px;
}

.table_img {
    text-align: center;
    vertical-align: middle;
}

.td_for_img {
    text-align: center;
}

.ui-datepicker-trigger {
	position: relative;
	height: 20px;
}

.ui-datepicker-trigger,.clear-field,.table_img,.cpa-button:enabled {
    cursor: pointer;
}

#ind-tkt-sale-contact-button {
    float: left;
    clear: both;
}

input.time {
	text-align: right;
}

/*#list .span-20:nth-child(1), #list .span-20:nth-child(2), #list .span-20:nth-child(3), #list .span-17, #list .span-2 {*/
	/*width: 96%;padding: 0px 2%;	*/
/*}*/

#list .span-20 .span-6 {
    float: left;
}

#list .span-6.last {
	position: initial;width: 30%;margin:0 !important;float: right;}



/*#list .span-8 {*/
	/*width: 35%;margin: 1% 0%;}*/
	
#list .span-8 input{
	margin: 1% 0;
}

/*#list .cpa-select {*/
	/*width: 40%;	*/
/*}*/

#id_show {
    width: 90%;
}

/* css for timepicker */
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
.ui-timepicker-div dl { text-align: left; }
.ui-timepicker-div dl dt { float: left; clear:left; padding: 0 0 0 5px; }
.ui-timepicker-div dl dd { margin: 0 10px 10px 45%; }
.ui-timepicker-div td { font-size: 90%; }
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }

.ui-timepicker-rtl{ direction: rtl; }
.ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; }
.ui-timepicker-rtl dl dt{ float: right; clear: right; }
.ui-timepicker-rtl dl dd { margin: 0 45% 10px 10px; }

img.clear_prev {
    vertical-align:text-bottom;
    margin-left: 5px;
}

.side_margins {
    display: grid;
    grid-template-columns: 30px auto 30px;
  }

.small_text {
    font-size: small;
}

.inputs_container {
    margin-left: 10px;
    display: grid;
    grid-template-columns: auto;
    grid-row-gap: 5px;
}

.inputs_container .inputs_item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
    align-items: center;
}

.inputs_item input {
    margin-top: 5px;
    margin-bottom: 5px;
}

.inputs_item.hidden {
    display: none;
}

.form-column {
    display: flex;
    flex-direction: column;
}

.form-column .form-group {
    margin-bottom: 1rem;
}

.super-saver {
    display: inline-block;
    padding: 5px 20px;
    font-size: 30px;
    font-weight: bold;
    color: #8B0000;
    background-color: #F3D364;
    transform: rotate(-10deg);
    border: 3px solid #8B0000;
    border-radius: 50% / 50%; /* Oval shape */
    width: 140px;
    height: 70px;
    line-height: 32px;
    text-align: center;
    aspect-ratio: 4 / 1;
    margin-top: 10px;
}

.super-saver-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    height: 100%;            /* Adjust as needed */
}

/* Full-screen overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure it's on top */
}

/* Simple spinner animation */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
