.board-title {
    width: 900px;
    align-items: center;
    color: #fff;
    text-align: center;
    display: flex;
    position: relative;
    background: #333333;
}

.board-title h1 {
    width: 100%;
    vertical-align: middle;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 36px;
    letter-spacing: .2rem;
}

.departure-board {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
    background: #000;
    width: 950px;
    padding: 0;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
    vertical-align: middle;
}

.title-row {
    display: table;
    width: 900px;
    margin: 20px;
    vertical-align: middle;
}

.title-rowafter::after {
    content: "";
    display: table;
    clear: both;
}

.title-column {
    float: left;
    display: table-cell;
    color: #fff;
    font-family: 'Fira Sans', sans-serif;
    font-size: 24px;
    letter-spacing: .2rem;
    margin-left: 10px;
}

.departure-row {
    display: flex;
    align-items: center;
    margin-left: 20px;
    margin-bottom: 8px;
}



/* Adjust styles for screens less than 576px (Extra small) */
@media only screen and (max-width: 575.98px) {
    .character {
         width: 12px; /* Adjust the height for Extra small screens */	 
    }
   .character2 {
         width: 9px; /* Adjust the height for Extra small screens */
    }
    .row-title-text {
         font-size: 10px;
    }
    .field-text-size {
         font-size: 12px; /* Override fs-3 with fs-4 */
    }
    .date-field {	
	height:20px;
    }
     .img-res {
         width:200px;
    }
}

/* Adjust styles for screens between 576px and 767px (Small) */
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
    .character {
         width: 16px; /* Adjust the height for Small screens */
    }
    .character2 {
         width: 12px; /* Adjust the height for Small screens */
    }
    .row-title-text {
         font-size: 11px;
    }
   .field-text-size {
         font-size: 16px !important; /* Override fs-3 with fs-4 */
    }
    .img-res {
         width:250px;
    }
}

/* Adjust styles for screens between 768px and 991px (Medium) */
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .character {
         width: 22px; /* Adjust the height for Medium screens */
    }
    .character2 {
         width: 15px; /* Adjust the height for Medium screens */
    }
    .row-title-text {
         font-size: 12px;
    }
    .field-text-size {
         font-size: 22px !important; /* Override fs-3 with fs-4 */
    }
}

/* Adjust styles for screens between 992px and 1199px (Large) */
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .character {
         width: 24px; /* Adjust the height for Large screens */
    }
    .character2 {
         width: 16px; /* Adjust the height for Large screens */
    }
    .row-title-text {
         font-size: 14px;
    }
    .field-text-size {
         font-size: 22px !important; /* Override fs-3 with fs-4 */
    }
}

/* Adjust styles for screens of 1200px and above (X-Large and XX-Large) */
@media only screen and (min-width: 1200px) {
    .character {
         width: 20px; /* Keep the default height for X-Large and XX-Large screens */
    }
    .character2 {
         width: 17px; /* Keep the default height for X-Large and XX-Large screens */
    }
    .row-title-text {
         font-size: 16px;
    }
    .field-text-size {
         font-size: 25px !important; /* Override fs-3 with fs-4 */
    }
}

/* public/css/
#loading-indicator {
    /* Add your styles for the loading indicator */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.hidden {
    display: none;
}

