@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

:root {
    --bs-primary: #4564e5;
    --soft-blue: #f1f5fb;
    --light: #f0efe4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serifl;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-primary {
    background-color: #4564e5;
}

.bg-light {
    background-color: var(--light) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-soft-blue {
    background-color: var(--soft-blue);
}

.fs-7 {
    font-size: 14px;
}

.fs-8 {
    font-size: 12px;
}

.flex-centerbetween {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--bs-primary);
}

.form-control,
.form-select,
.btn {
    border-radius: 0.5rem;
    padding: 10px 18px;
}

.btn-sm {
    border-radius: 0.5rem;
    padding: 6px 12px;
    font-weight: 400 !important;
}

.btn {
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--bs-primary);
}

.btn-cart {
    width: 36px;
    height: 36px;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.navbar .navbar-nav .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--bs-dark);
}

.table thead tr th {
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.table-schedule tr th,
.table-schedule tr td {
    padding: 16px 24px;
}

.sidebar {
    min-height: 100vh;
}

@media screen and (max-width: 992px) {
    .sidebar {
        min-height: auto;
    }
}

.sidebar .link-menu {
    justify-content: start;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 14px;
}

.card {
    border-radius: 10px;
}

.sidebar .link-menu:hover,
.sidebar .link-menu.active {
    background-color: var(--bs-primary);
    color: var(--white);
}

header {
    padding-top: 80px;
    padding-bottom: 80px;
}

header .header-title {
    font-size: 52px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    header img {
        width: 70%;
    }
}

.card-product .card-img-top {
    width: 40%;
    display: block;
    margin: 20px auto 40px;
    object-fit: cover;
}

.card-product .checkout-button {
    padding-left: 16px;
    padding-right: 16px;
}

@media screen and (max-width: 768px) {
    .card-categories h3 {
        font-size: 20px;
    }

    .card-categories h5 {
        font-size: 18px;
    }

    .card-product .card-img-top {
        height: 240px;
    }

    .card-product .checkout-button {
        border-radius: 999px;
        padding: 10px;
        width: 40px;
        height: 40px;
    }

    span {
        display: none;
    }
}
