body {
    background-color: #0f172a;
    color: #fff;
}

.sidebar {
    background-color: #1e293b;
}

.sidebar a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    padding: 0.75rem 1rem;
}

.sidebar a:hover {
    background-color: #334155;
}
.sidebar-hover {
    background-color: #334155 !important;
}

.sidebar h2 {
    padding: 1rem;
}

.modal-content {
    background-color: #1e293b;
    color: #fff;
    border: none;
    border-radius: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: #3b82f6;
    border: none;
}

.btn-link {
    color: #94a3b8;
    text-decoration: none;
}

@media (min-width: 992px) {
    .sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        width: 240px;
        z-index: 1030;
    }

    .main-content {
        margin-left: 240px;
    }
}


.table img {
    width: 50px;
    height: auto;
    border-radius: 0.25rem;
}
.icon-btn {
    background: none;
    border: none;
    color: white;
}

.card {
    background-color: #1e293b;
    color: white;
    border: none;
}

.text-right {
    text-align: right;
}

#card-element {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: white;
    margin-bottom: 16px;
    width: 99%;
    margin-left: 3px;
}

.card-custom {
    background-color: #0a2540;
    color: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
    margin: 5rem auto;
}

.container-box {
    background-color: #e6f1ff;
    border-radius: 1rem;
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 4rem auto;
    text-align: center;
}
.card-clean {
    border-radius: 1rem;
    border: 1px solid #ccc;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.card-clean:hover {
    background-color: #3e587b;
    transform: translateY(-5px);
}
.card-clean-active {
    background-color: #3e587b;
}
.card-clean img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card-title {
    font-weight: 600;
    color: #0a2540;
    font-size: 1.25rem;
}
.card-text {
    color: #2a2a2a;
}
.text-white {
    color: white !important;
}

.cursor-pointer {
    cursor: pointer;
}
.text-decoration-none {
    text-decoration: none;
}

.btn-blue-dark {
    background-color: #0f172a;
    color: white;
}

.my-basket {
    background-color: #0f172a;
    color: white;
    width: 100ù;
    border: 1px dashed white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 1rem;
}

.btn-blue-dark:hover {
    background-color: #3e587b;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.confirmation-card {
    max-width: 500px;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.check-icon {
    font-size: 1.5rem;
    color: #22c55e;
}


.service-card {
    cursor: pointer;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
}

.service-card:hover {
    background:  #0f172a;
    color: white;
}
.service-card img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.service-label {
    display: flex;
    align-items: center;
}