

#blue-top {
    display: flex;           /* Enable flexbox */
    justify-content: space-between; /* Optional: Space between columns */

}
.column {
    flex: 1;                /* Each column will take up equal space */
    margin: 10px;          /* Optional: Add some margin */
    padding: 8px;         /* Optional: Add some padding */
   /* background-color: #f0f0f0; /* Optional: Background color for columns */
   /* border: 1px solid #ccc; /* Optional: Border for columns */
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}

#blue-content{
    display: flex;           /* Enable flexbox */
    justify-content: space-between; /* Optional: Space between columns */
    background: white;
    width: 100% !important;
}

#blue-footer{
    display: flex;           /* Enable flexbox */
    justify-content: space-between; /* Optional: Space between columns */

}

.hide{
    display: none;
}

.board-map-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 22px 16px;
    padding-left: 8px;
    margin: 30px auto 24px;
    margin-bottom: 24px;

}

.item-wrap{
    position: relative;
}

.map-item{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: 1px dashed #707070;
    font-size: 18px;
    font-weight: 600;
    color: blue;
    font-weight: bold;
    text-decoration: none;
}

.map-item-review{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px dashed #707070;
    font-size: 23px;
    font-weight: 600;
    color: blue;
    font-weight: bold;
    text-decoration: none;
}


.current-icon{
    position: absolute;
    top: -59%;
    left: 50%;
    transform: translate(-50%);
}


@font-face {
    font-family: 'fmedium';
    src: url('/assets/css/fonts/Roboto-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'fbold';
    src: url('/assets/css/fonts/Roboto-Bold.ttf') format('truetype');

}

@font-face {
    font-family: 'fregular';
    src: url('/assets/css/fonts/Roboto-Regular.ttf') format('truetype');
}