.gndStrips-container{
    padding:80px 0px;
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.strip {
    display: flex;
    width: 90%;
    height: 120px;
    background-color: white;
    border-radius: 9px;
    max-width: 920px;
    min-width: 900px;
    box-shadow: 0px 0px 55px var(--cool);
    animation: glow 5s infinite alternate-reverse;

}

@keyframes glow {
    0% {
        box-shadow: 
            0 0 70px var(--cool),
            0 0 30px var(--cool),
            0 0 40px var(--cool);
    }
    25% {
        box-shadow: 
            0 0 25px var(--cool),
            0 0 35px var(--cool),
            0 0 50px var(--cool);
    }
    50% {
        box-shadow: 
            0 0 55px var(--cool),
            0 0 65px var(--cool),
            0 0 70px var(--cool);
    }
    75% {
        box-shadow: 
            0 0 30px var(--cool),
            0 0 40px var(--cool),
            0 0 50px var(--cool);
    }
    100% {
        box-shadow: 
            0 0 20px var(--cool),
            0 0 30px var(--cool),
            0 0 40px var(--cool);
    }
}


.sector * {
	font-family: 'Andale Mono', monospace;
    margin: 0;

}

input:focus {
    outline: none; /* Removes the focus outline */
    border: none;  /* Optional: Prevents border changes */
    box-shadow: none;          /* Removes any shadow effect */
    transform: none;
    height:initial;
    border-radius: initial;  
}





.mainBodyContainer {
    display:flex;
    margin-top: 20px;
    flex-wrap: nowrap;


}

.resizer {
        width: 10px;
        cursor: col-resize;
        background-color: #fff;
    }



.strips-main-container {

    border: 0.75px solid #222;
    border-bottom: none;
    width:80%;
    min-width:900px;
    padding-left:5px;
    /*min-width: 900px;
    max-width:1000px;*/
}










.delete-button {
    background-color: #dc3545; /* Red button */
    color: white; /* Button text color */
    padding: 5px 10px; /* Button padding */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    margin-top: 10px; /* Space above delete button */
}

.delete-button:hover {
    background-color: #c82333; /* Darker red on hover */
}


/* When the strip is marked as deleted */
.strip.deleted {
    background-color: #f0f0f0; /* Gray background for deleted strips */
    animation: vibrate 0.5s ease; /* Add vibration animation */
}


button {
    background-color: white; /* Bootstrap primary color */
    color: black;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer; /* Shows a pointer on hover */
    transition: background-color 0.3s; /* Smooth background color change */
}



button:disabled {
    background-color: gray; /* Style for disabled buttons */
    cursor: not-allowed; /* Change cursor to indicate unclickable */
}


/*FOR DROPDOWN MENU*/

/* Style for the container div */
        #editableDiv {
            position: relative;
        }





        /* Hide the dropdown initially */
        .options-dropdown {
        	width: 170px;
            display: none;
            position: absolute;
            top: 40px;
            right: -60px;
            background-color: white;
            border: 1px solid #ccc;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }

        /* Style each option in the dropdown */
        .options-dropdown button {
        	font-size: 15px;
            display: block;
            width: 100%;
            padding: 5px 10px;
            border: none;
            background: none;
            cursor: pointer;
            text-align: left;
        }

        /* Hover effect for dropdown options */
        .options-dropdown button:hover {
        }


/*01/11/2024 --- */

.stripContainerTopBar{

    display: flex;
    justify-content: flex-start;
    height: 70px;
    width:100%;
    align-items: center;
    border-bottom: 0.75px solid #222;

}

.stripContainerTopBarAddStripButton {

    width: 40px;
    height: 40px;
    background-color: #fff; /* Background color */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 190%; /* Font size for the '+' symbol */
    font-weight: bold;
    
    cursor: pointer;
    border-radius: 3px; /* Slight rounding for a polished look */
    user-select: none; /* Prevents text selection */
    transition: background-color 0.3s ease;
    padding: 0; /* Ensures no extra space */
    margin-left: 10px; /* Ensures no extra space */
    box-sizing: border-box; /* Ensures dimensions remain fixed */
}

.plusSVGButton{
    color:green;
}
.clickable-atsu-input {
            width: 100%;
            padding: 5px;
            border: 0px solid magenta;
            border-radius: 3px;
            text-align: center;
            cursor: pointer;
        }
        .atsuOptions-menu {
            /*display: block;
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #f9f9f9;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;*/
        }
        .atsuOptions-menu button {
            margin:0px;
            padding: 3px;
            padding-left: 7px;
            width: 100%;
            border: none;
            font-size:10px;
            color: #777;
            text-align: left;
            cursor: pointer;
        }

        .atsuOptions-menu button:hover {
            color: black;
        }

        .label {
            font-weight: bold;
            padding: 5px;
            border-radius: 3px;
        }
        .label.a {
            color: white;

        }
        .label.b {
            color: white;
  
        }
        .label.custom {
            color: black;

        }



.atsuFreqInput {
    font-size: 13px;
    text-align: center;
    border: none;
    background-color: transparent;
    box-sizing: border-box;
    margin-top:8px;
    width:90%;
    white-space: nowrap;
    overflow: auto; /* or overflow-x: auto */
}

.autocomplete-container {
            position: relative;
            display: none;
            

        }
.autocomplete-list {
    position: absolute;
    top: calc(100% + 5px);
    left:calc(100% - 55px);
    border: 0.75px solid #222;
    background-color: #fff;
    overflow-y: auto;
    width: 130px; /*for each pixel added here, subtract the same amount from left:calc*/
    max-height:120px;
    z-index:1000;
    border-radius: 5px;
}

.autocomplete-item {
            display: flex;
            align-items: end;
            justify-content: space-between;
            padding: 12px;
            cursor: pointer;
            text-align: left;
        }

.autocomplete-item:hover {
            background-color: #f3f3f3;
        }


        .item-name {
            font-size: 14px;
        }

        .item-type {
            color: #777; /* Style for the type */
            font-size: 9px;
        }








/*---*/

.autocomplete-container-instructors {
            position: relative;
            display: none;
            

        }
.autocomplete-list-instructors {
    position: absolute;
    top: calc(100% + 5px);
    left:calc(100% - 140px);
    border: 0.75px solid #222;
    background-color: #fff;
    overflow-y: auto;
    width: 150px; /*for each pixel added here, subtract the same amount from left:calc*/
    max-height:120px;
    z-index:1000;
    border-radius: 5px;
}


.autocomplete-item-instructors {
            display: flex;
            align-items: end;
            justify-content: space-between;
            padding: 12px;
            cursor: pointer;
            text-align: left;
        }

.autocomplete-item-instructors:hover {
            background-color: #f3f3f3;
        }


        .item-surname-instructors {
            font-size: 12px;
            color: #777;
        }

        .item-code-instructors {
            color: black; /* Style for the type */
            font-size: 16px;
        }












.stripContainerTopBarSaveButton {

    width: 40px;
    height: 40px;
    background-color: #fff; /* Background color */
    color: white; /* Text color */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100%; /* Font size for the '+' symbol */
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px; /* Slight rounding for a polished look */
    user-select: none; /* Prevents text selection */
    transition: background-color 0.3s ease;
    padding: 0; /* Ensures no extra space */
    margin-left: 10px; /* Ensures no extra space */
    box-sizing: border-box; /* Ensures dimensions remain fixed */

}

.stripContainerTopBarSaveButton:hover {
    border: 0.75px solid #222;

}  

.stripContainerTopBarAddStripButton:hover {
    border: 0.75px solid #222;

} 







.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 15px;
    flex: 1;
    border-right: 0.75px solid #222;
    /*width: 200px; /* Adjust width as needed */
    gap: 5px;

}

label {
    font-size: 10px;
    color: #5E5E5E;
}

input {
    text-align: center;
    font-size: 16px;
    border: none;
    background-color: #fff;
    transition: padding 0.3s;
    transition: border 0.2s;
    text-transform: uppercase;

}

input::placeholder {
    color: #ccc;
    font-size: 15px;
}




/*IDENT AND TYPE*/

.ident{
    min-width:115px;
    max-width:230px;
}

.label-row {
            display: flex;
            justify-content: space-between;
            height: 50%;
            max-width:236px;
            min-width: 115px;
        }

        .label-left {
            text-align: left;

        }

        .label-right {
            font-size: 20px;
            text-align: right;
            border: none;
            background-color: #fff;
            margin-top:8px;
            width:100%;
        }

.section:last-child {
    border-right: none;
}




/* STARTUP TIME*/

.startup {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    flex: 1;
    border-right: 0.75px solid #222;
    max-width:115px;
}

.startupInputContainer{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}


.startupTime{
    font-size: 20px;
    text-align: center;
    border: none;
    margin-top:8px;
    width:70%;
}

::selection {
    background-color: #ddd;
}



.startupTimeBtn{
    align-items: center;
    font-size:23px;
    border: 0.75px solid #222;
    padding: 0px;
    margin: 0px;
    margin-right:6px;
    margin-top:2px;
    margin-left: 4px;
    border: 0px;
    vertical-align: middle;
    opacity: 0.5;

}

.startupTimeBtn:hover {
    cursor: pointer;
    opacity: 1;
}


/*DEPT-ARR*/

.dept-arr {
    max-width: 136px;
}


/*STATUS*/


.lang {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0px;
    flex: 1;
    /*border-right: 0.75px solid #222;*/
    max-width: 40px;
    

}

.langContainer{

    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:40px;

}

.langContainer:hover{

    cursor: pointer;
}


.lang-icon {
    font-size:20px;
}
.lang-text {
    font-size: 13px;
    color: #222;
}

.lang-swap-btn {
    position: relative;
    top: -35px;
    right:-7px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.6;
    padding: 6px;
    margin: 0px;
}



.lang-swap-btn:hover{
    opacity:1;
}




/*ATSU*/

.atsu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0px;
    flex: 1;
    border-right: 0.75px solid #222;
    max-width: 130px;
    justify-content: center;
}

.atsuContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*min-width:130px;*/
    width:96%;
    height:100%;
    padding-bottom:8px;

}

.atsuInput{
    font-size: 17px;
    text-align: center;
    box-sizing: border-box;
    border: none;
    background-color: transparent;
    margin-top:8px;
    width:115%;
    white-space: nowrap;
    overflow-x: auto; /* or overflow-x: auto */
    
}





/*activityFI*/

.activityFI{
    max-width: 170px;
    padding: 10px;

}

.activityRowLabel{
    display:flex;
    flex-direction: column;
    box-sizing: border-box;
}

.activityFIInput{

}


.activityStyle{
    font-size: 18px;
    width: 130px;
}

.instructorNameLabel{
    font-size: 13px;
    text-align: right;
    width:100%;
    position:relative;
    top:-3px;
}

.actCompleteStyle{
    top: 15px;
}






/*ORIDEST*/

.ori-dest {
    max-width:136px;
}

.label-row-oridest{
    display: flex;
    justify-content: space-between;
    height: 50%;
    /*max-width:80px;*/

}

.label-left-oridest {
    text-align: left;

}

.label-right-oridest {
    font-size: 20px;
    text-align: right;
    border: none;
    background-color: #fff;
    margin-top:8px;
    width:100%;
}






.deletedStripContainer{
    display:flex;
    flex-direction: column;
}

.deletedContainerBottomDiv{
    order: 1;
    height:10px;
    background: repeating-linear-gradient(45deg, white, white 10px, red 10px, red 12px);
    margin-top:10px;
    border-bottom: 1px solid black;
}

.landed{
    opacity:0.4;
    cursor: not-allowed;
}

.landed * {
    pointer-events: none;
}

.hidden {
  display: none;

}

.stripOuter {
    display: flex;
    flex-direction: row;
    padding-top:10px;
    padding-bottom:10px;
    margin-left: 20px;
}

.stripButtonContainer {
    display:none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.landedButtonStrip{
    background-image: url('../icons/plane-landing.svg');
}


.restoreButton{
    background-image: url('../icons/strip-restore.svg');


}

.deleteButtonStrip{
    background-image: url('../icons/cross.svg');

    
}

.buttonStripEnd{
    margin:6px 12px;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center;
}

.moveUpButtonStripEnd{
    background-image: url('../icons/moveUp.svg');

}

.moveDownButtonStripEnd{
    background-image: url('../icons/moveDown.svg');
}


.highlight {
    border: 2px solid red;
}


}