@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter", serif !important;
}

#navbar {
    background: transparent;
    transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
}

.scrolled {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.d-flex-row-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.d-flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.d-flex-row-start {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
}

.d-flex-column-start {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

/* according customization */
.accordion {
    --bs-accordion-active-color: none !important;
    --bs-accordion-active-bg: none !important;
    --bs-accordion-btn-focus-box-shadow: none !important;
    --bs-accordion-border-width: none !important;
}

.accordion-item:first-of-type {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.accordion-item {
    width: 100% !important;
    border: 0 !important;
}

.accordion-button {
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    background: var(--bs-gray-800) !important;

    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.accordion-body {
    background: var(--bs-gray-700) !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.accordion-body p {
    margin: 0px !important;
    margin-left: 2.6rem !important;
}

.accordion-button.collapsed {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.accordion-button.collapsed::after {
    height: 1rem !important;
    width: 1rem !important;
    background-size: 1rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgba(108,117,125, 1);transform: ;msFilter:;'%3E%3Cpath d='M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4z'%3E%3C/path%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2zm0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8z'%3E%3C/path%3E%3C/svg%3E");

    order: -1;
    margin-left: 0px !important;
    margin-right: 1rem !important;
}

.accordion-button:not(.collapsed)::after {
    height: 1.6rem !important;
    width: 1.6rem !important;
    background-size: 1.6rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgba(108,117,125, 1);transform: ;msFilter:;'%3E%3Cpath d='M7 11h10v2H7z'%3E%3C/path%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2zm0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8z'%3E%3C/path%3E%3C/svg%3E");

    order: -1;
    margin-left: 0px !important;
    margin-right: 1rem !important;
}

.accordion-button.collapsed::after {
    height: 25px !important;
    width: 25px !important;
    background-size: 25px !important;
}

/* custom backgrounds */
.bg-gray-700 {
    background: var(--bs-gray-700) !important;
}

.input-group-text {
    border: none !important;
    background: var(--bs-gray-700) !important;
}

.btn-gray-700 {
    background-color: var(--bs-gray-700) !important;
    transition: all 0.3s ease-in-out;
}

.btn-gray-700:hover {
    border-color: rgba(255, 255, 255, 0.9);
}


.custom-list-group {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 100%;
    padding: .50rem !important;
    margin: 0 !important;
}

.custom-list-group li {
    padding: .50rem .50rem;
}

.custom-list-group li a {
    text-decoration: none;
    color: #cecece;
}

.custom-list-group li a:hover {
    text-decoration: none;
    color: white;
}

.two-line-ellipsis {
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
