.details {
    margin-top: 64px;
}

.tabs {
    margin-top: 20px;
}

.tab-links {
    display: flex;
    flex-wrap: no-wrap;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-links li {
    flex: 1;
}

.tab-links a {
    padding: 8px 12px;
    display: block;
    background: #f2f2f2;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tab-links a:hover {
    background: #ddd;
    transform: translateY(-3px);
}

.tab-links li.active a {
    background: #3498db;
    color: #fff;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.tab-content {
    margin-top: 20px;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tab ul {
    list-style: none;
}

.tab ul li{
   margin-top: 8px;
}


.tab ul li::before {
    content: "";
    display: inline-block;
    height: 8px;
    width: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: orange;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.crew ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.crew ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
}

.crew-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.crew-icon:hover {
    transform: scale(1.1);
    filter: invert(35%) sepia(100%) saturate(3462%) hue-rotate(9deg) brightness(97%) contrast(101%);
}

.crew-icon.captain::before {
    background: url("/assets/images/icons/ic_captain.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.crew-icon.waiter::before {
    background: url("/assets/images/icons/ic_waiter.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.crew-icon.cook::before {
    background: url("/assets/images/icons/ic_cook.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.crew-icon.cook-assistant::before {
    background: url("/assets/images/icons/ic_cook_assistant.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.crew-icon.sailors::before {
    background: url("/assets/images/icons/ic_sailor.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.crew-icon.hostes::before {
    background: url("/assets/images/icons/ic_hostes.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.accomodation h3,
.tab-content h4 {
    text-align: center;
}

.tab-content ul {
    padding-left: 43%;
}

.crew h3, .pricing h3 {
    font-size: 1.5rem;
    text-align: left;
}

.accomodation h3, .crew h3, .pricing h3 {
    color: #006284!important;
}

/* Mobile */
@media only screen and (max-width: 479px) {
    .details {
        margin-top: 48px;
    }    

    .tab-links a {
        font-size: 16px;
        line-height: 18px;
        min-height: 55px;
    }

    .tab ul li{
        margin-top: 12px;
     }

    .tab-content ul,
    .crew ul {
        padding-left: 33% !important;
    }

    .crew h3 {
        text-align: center;
    }

    .accomodation {
        margin-top: 50px;
    }

}