.dark_background {
    background-color: #151413;
    color: white;
}

.light_background {
    background-color: #242424;
    color: white;
}

.title {
    color: #e4dad1;
    display: flex;
    font-weight: 500;
    font-size: 25px;
    font-family: "Bebas Neue", sans-serif;
    flex-direction: column;
    text-decoration: none;
    transition: color .2s ease;
}

.bread_text {
    color: #e4dad1;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
}

.here {
    color: #ce442e;
}

.here:hover {
    color: #e1634a;
}

#base_title {
    font-size: 30px;
    height: 30px;
}

#base_title:hover {
    color: #ce442e;
}

.list_titles {
    color: #e4dad1;
    text-decoration: none;
}

.list_titles:hover {
    color: #ce442e;
}

.list_titles:active {
    color: #ce442e;
}

#base_creator {
    margin: 0px;
    font-size: 13px;
}

.delete {
    color: #e4dad1;
    text-decoration: none;
}

.delete:hover {
    color: red;
}

.edit {
    color: #e4dad1;
    text-decoration: none;
}

.edit:hover {
    color: #5d7239;
}

.star {
    color: orange;
}

.base_stars {
    font-size: 20px;
    font-weight: normal;
}

.star.half:after {
    content:'\2606';
    color: orange;
    position: absolute;
    width: 8px;
    overflow: hidden;
}

.table {
    --bs-table-bg: #242424 !important;
    --bs-table-color: #e4dad1 !important;
}

.mobile {
    display: none;
}

/* Make responsive for mobile and tablet */
@media (max-width: 1000px) { /* Phone */
    .table-background {
        width: 100%;
    }

    .mobile {
        display: block; /* Show mobile content */
    }

    .desktop {
        display: none !important; /* Hide desktop content */
    }

    #results-container {
        display: none !important;
    }

    #above_base_list_title {
        font-size: 35px;
        margin-top: 50px;
        text-shadow: 2px 2px 0px black;
    }

    #background_image {
        padding-bottom: 50px;
    }

    #p_below_title {
        display: none;
    }

    .submit-button {
        font-size: 20px;
    }

    .sort_order {
        font-size: 18px;
    }

    .sort {
        font-size: 18px;
    }

    #base_title_mobile {
        margin-bottom: -10px;
    }

    #base_creator_mobile {
        margin-bottom: 0px;
        font-size: 12px;
    }

    .date_star,
    .base_stars {
        font-size: 14px;
    }

    .build_cost_mobile {
        padding: 0px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .build_cost_mobile > p,
    .upkeep_cost_mobile > p {
        margin: 0px;
    }

    .upkeep_cost_mobile {
        padding: 0px 5px 0px 0px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .costs {
        font-weight: bold;
        font-size: 14px;
    }

    .resource {
        width: 25px;
    }

    .resource_text {
        font-size: 14px;
    }

    .badges {
        margin-top: 5px !important;
    }

    .tags {
        display: flex;
        justify-content: flex-start;
        gap: 5px;
        flex-wrap: wrap;
    }

    .rank_tag {
        background-color: #B59410;
    }

    .team_size_tag {
        background-color: #3d6b4d;
    }

    .rockets_tag {
        background-color: #a33b2e;
    }

    .tag {
        display: flex;
        align-items: center;
        border-radius: 5px;
        padding: 0px 3px;
        font-size: 14px;
        text-align: center;
        height: 20px;
    }

    .badge {
        padding: 5px !important;
        font-weight: normal !important;
    }

    .rocket {
        width: 23px;
        padding-top: 5px;
        padding-left: 2px;
    }

    .delete_edit {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .delete_edit > .row {
        display: flex;
        gap: 50px;
    }
}