.addForm input{
    border: 1px solid rgb(237, 237, 237);
    padding: 5px;
    outline: none;
}
#invoiceNum{
    font-size: 15px;
}
thead{
    background-color: rgb(183, 183, 183);
}
thead th{
    color: white;
    font-weight: 400;
    font-size: 11px;
}
.plusButt{
    width: 100%;
    border: none;
    background-color: rgb(247, 247, 247);
    color: rgb(70, 70, 70);
    border-radius: 5px;
    cursor: pointer;
}
.buttArea{
    align-items: center;
    text-align: center;
}
.submitButt{
    border: none;
    background-color: rgb(66, 34, 207);
    color: white;
    padding: 5px;
    font-size: 12px;
    width: 200px;
    cursor: pointer;
    border-radius: 5px;
}
.count{
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    color: gray;
}
.logoText{
    display: block;
    text-decoration: none;
    color: rgb(29, 134, 255);
    padding-top: 20px;
    text-align: center;
    font-size: 25px;
}

#demoDiv{
    height: calc(100% - 0px);
    margin: 0;
    margin-top: 0;
}
#demoBar{
    padding: 5px;
    border-bottom: 1px solid rgb(228, 228, 228);
    background-color: white;
}
#demoBar button{
    background-color: rgb(29, 134, 255);
    color: rgb(242, 242, 242);
    border: none;
    padding: 7px 20px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
}
.demoBottom{
    display: flex;
    width: calc(100% - 20px);
    height: 32%;
    margin-top: 3px;
    background-color: white;
    border-bottom: 1px solid rgb(231, 231, 231);
    border-top: 1px solid rgb(231, 231, 231);
    padding: 10px;
    border-left: 2px solid rgb(29, 134, 255);
}
.botLeft{
    width: calc(50%);
}
.botLeft table {
    width: calc(100% - 10px);
    text-align: center;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.botLeft table thead th {
    padding: 2px;
    background-color: white;
    color: black;
    border: none;
    flex-direction: row;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    font-size: 12px; /* Prevents text from wrapping to a new line */
}

.botLeft table thead th img {
    margin-right: 5px; /* Space between icon and text */
}

.botLeft table tbody td {
    padding: 2px;
    font-size: 11px;
    border-top: 1px solid #ddd; /* Adds a border between rows */
}
.map{
    height: 100%;
    width: 50%;
}
.truckNum{
    font-size: 12px;
    color: rgb(90, 90, 90);
}

.stop {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.des{
    font-size: 13px;
}
.address{
    font-size: 11px;
    color: gray;
}
.routeStops{
    height: 55%;
}
.circleA{
    width: 30px;
    height: 30px;
    background-color: rgb(29, 134, 255); /* You can change this to any color */
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    margin-right: 10px;
    z-index: 10000;
}
.circle {
    width: 30px;
    height: 30px;
    background-color: #b8b8b8; /* You can change this to any color */
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    margin-right: 10px;
    z-index: 10000;
}

.line {
    position: absolute;
    left: 14px; /* Align with the center of the circle */
    width: 2px;
    height: 20px; /* Adjust the height to match the spacing between stops */
    background-color: #b8b8b8; /* Same color as the circle */
    top: 20px; /* Move the line up */
}
.line2 {
    position: absolute;
    left: 14px; /* Align with the center of the circle */
    width: 2px;
    height: 15px; /* Adjust the height to match the spacing between stops */
    background-color: #b8b8b8; /* Same color as the circle */
    top: 70px; /* Move the line up */
}

.stop:nth-child(2) .line, .stop:nth-child(4) .line {
    height: 20px; /* Adjust this value according to the spacing between elements */
}

.stop:last-child .line {
    display: none; /* Hide the last line */
}
.demoButtons{
    width: calc(100% - 10px);
    text-align: right;
}
.button1{
    background-color: white;
    border: 1px solid rgb(178, 178, 178);
    color: rgb(142, 142, 142);
    cursor: pointer;
    font-size: 11px;
    padding: 3px 10px;
}
.button2{
    background-color: rgb(29, 134, 255);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 11px;
    padding: 4px 11px;
}

.loading-spinner {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
