:root {
    --background_color: #F5F5F3;
    --text: #0F1821;
    --white_widget: #FFFFFF;
    --blue_widget: #134681;
    --dark_blue_widget: #013D76;
    --light_blue_button_color: #2A6EC5;
    --border_box_color: #868282;
    --hover_change_color: #4D94FF;

    font-family: Inter, sans-serif;
}

/*MAIN ELEMENTS*/
html {
    scroll-behavior: smooth;
}

header {
    position: relative;
    width: 100%;
    max-width: 100%;
    bottom: 0;
    overflow: visible;
    background: var(--background_color);
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.25))
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    background: var(--background_color);
}

a {
    text-decoration: none;
}

/*UTILITY*/
.display_container_vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.display_container_horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.white_text {
    color: var(--background_color);
}

input.input_no_border_white {
    height: 50px;
    border: none;
    border-radius: 15px;
    font-size: 22px;
    text-align: center;
}

button.button_white, a.button_white_non_button {
    width: 100%;
    max-width: 197px;
    height: 50px;
    border: none;
    border-radius: 15px;
    font-size: 25px;
    cursor: pointer;
    background: var(--light_blue_button_color);
    color: var(--background_color);
    transition: all 0.5s ease;
}

button.button_white:hover, a.button_white_non_button:hover {
    transform: translateY(-4px);
    background: var(--hover_change_color);
    box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.65);
}

a.button_white_non_button {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*FOOTER*/
footer {
    position: relative;
    width: 100%;
    bottom: 0;
    overflow: hidden;
    background: var(--background_color);
    margin-top: auto;
}

.footer_svg {
    display: block;
    width: 100%;
    height: auto;
}

/*NAVIGATION*/
.nav_container {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white_widget);
}

nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-right: 30px;
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav_logo {
    width: 174px;
    height: 100px;
}

nav a {
    font-size: 2rem;
    color: var(--text);
    transform: scale(100%);
    transition: all 0.25s ease;
}

nav a:hover {
    font-size: 1.8rem;
    transform: scale(55%);
}

.nav_icon svg {
    transform: scale(100%);
    transition: transform 0.25s ease;
}

.nav_icon:hover svg {
    transform: scale(90%);
}


/*VIDEO SECTION*/
.video_container {
    display: flex;
    width: 100%;
    height: 810px;
    object-fit: fill;
}

.cover_video_img {
    position: absolute;
    top: 600px;
    width: 100%;
    height: auto;
}

/*CARPORT SLIDER SECTION*/

.carport_slider_section {
    margin-top: 10rem;
    margin-bottom: 10rem;
    background: var(--background_color);
    box-shadow: 0 15px 30px 5px rgba(0,0,0,0.35), 0 -15px 30px 5px rgba(0,0,0,0.25);
}

.slider_container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 450px;
}

.slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    width: 100%;
    height: 400px;
}

.product_card_slider {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    min-width: 250px;
    width: 100%;
    background: var(--white_widget);
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.25s ease, box-shadow 0.25s ease;
}

.product_card_slider:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.product_card_slider p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 35px;
}

.product_card_slider img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.slider_view_button {
    margin: -5px 0 auto auto;
    padding: 8px 10px;
    background: var(--dark_blue_widget);
    color: var(--white_widget);
    border-radius: 10px;
    display: inline-block;
    transition: background 0.2s ease;
}

.slider_view_button:hover {
    background: var(--hover_change_color);
}

.product_card_link {
    color: var(--text);
}

/*LOGIN SECTION*/
.login_section {
    margin-top: 10%;
    margin-bottom: 10%;
    background: var(--blue_widget);
    box-shadow: 0 15px 30px 5px rgba(0,0,0,0.25), 0 -15px 30px 5px rgba(0,0,0,0.25);
}

.login_form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    height: 300px;
    gap: 20px;
    color: var(--background_color);
}

.button_row {
    display: flex;
    gap: 100px;
    margin-top: 10px;
    align-items: center;
}
.button_row_products {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/*CREATE USER*/
.register_form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    height: 300px;
    gap: 15px;
    color: var(--background_color);
}

.register_section {
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    margin-top: 10%;
    margin-bottom: 10%;
    background: var(--blue_widget);
    box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25), 0 -5px 20px 0 rgba(0,0,0,0.25);
}

.register_section_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.create_user_section {
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    margin-top: 10%;
    margin-bottom: 10%;
    background: var(--blue_widget);
    box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25), 0 -5px 20px 0 rgba(0,0,0,0.25);
}

.button_row_info_page {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*PRODUCT PAGE*/
.product_page_image {
    max-width: 793px;
    width: 100%;
    min-width: 793px;
    margin: 10% 5% 0 1%;
}

.product_text_field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 9.5%;
}

.product_text_field p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product_page_button {
    width: 46.51px;
    height: 45px;
    margin-right: -1%;
    margin-left: -1%;
    background: #D9D9D9;
    border: 1px solid var(--border_box_color);
    transition: font-size 0.3s ease;
}

.product_page_button:hover {
    transition: font-size 0.3s ease;
    transform: scale(1.05);
}

.product_page_counter {
    width: 56.98px;
    height: 45px;
    text-align: center;
    background: #D9D9D9;
    border: 1px solid var(--border_box_color);
    -webkit-appearance: textfield;
}

.add_to_cart_button {
    width: 150px;
    height: 53px;
    background: var(--blue_widget);
    border: none;
    margin-top: 5%;
    color: var(--white_widget);
    font-size: 18px;
    transition: all 0.3s ease;
}

.add_to_cart_button:hover {
    transition: all 0.3s ease;
    background: var(--light_blue_button_color);
    transform: scale(1.03);
    cursor: pointer
}

.slider_product_page_price {
    font-size: 24px;
}

.slider_product_page_price_addition {
    margin-left: 2%;
}

.add_to_cart_form {
    padding-top: 5%;
}

.content_holder {
    display: flex;
    flex-direction: row;
    margin: 0 5% 0 0;
}

.row_price_content_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding-top: 16%;
}

.row_price {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.product_info_box {
    width: 100%;
    max-width: 1360px;
    background: var(--white_widget);
    color: var(--text);
    border: 2px solid var(--border_box_color);
    border-radius: 10px;
    margin-bottom: 0.5%;
    overflow: hidden;
    transition: 0.3s ease;
}

.product_page_info_section {
    margin-top: 5%;
}

.product_description_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    cursor: pointer;
}

.product_description_header h3 {
    font-size: 25px;
    font-weight: normal;
}

.product_description_button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 25px;
    transition: all 0.3s ease;
}

.product_description_button:hover {
    transition: all 0.3s ease;
    transform: translate3d(10%, 4%, 20px);
}

.product_description_content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.product_info_box.open .product_description_content {
    max-height: 1000px;
    padding: 15px 20px;
}

.product_info_box.open .product_description_button {
    transform: rotate(45deg);
}

.specification_hr {
    border: 0.5px solid rgba(0, 0, 0, 0.2);
}

/*CART OVERLAY*/
.cart_overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 460px;
    height: 100vh;
    background: var(--background_color);
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 10px 20px 10px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.35s ease, transform 0.35s ease-in-out;
    z-index: 9999;
    overflow: hidden;
}

body.cart_open {
    overflow-x: hidden;
}

.cart_overlay.show {
    transform: translateX(0);
    opacity: 1;
}

.cart_overlay.hidden {
    display: none;
    pointer-events: none;
}

.cart_list_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    overflow-y: auto;
    padding-right: 5px;
    box-shadow: 6px 8px 15px 0 rgba(0,0,0,0.3);
}

.cart_overlay_image {
    width: 205px;
    height: auto;
    object-fit: cover;
    margin-left: 1%;
}

.cart_overlay_text {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-bottom: 15px;
}

.cart_item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white_widget);
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.cart_item_image {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cart_item_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cart_delete_button {
    background: var(--blue_widget);
    border: none;
    border-radius: 8px;
    padding: 5px 10px;
    color: var(--white_widget);
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.cart_delete_button:hover {
    background: var(--hover_change_color);
    transform: scale(1.05);
}

.cart_overlay_close {
    position: absolute;
    top: 15px;
    right: 25px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text);
    cursor: pointer;
    transition: font-size 0.35s ease;
}

.cart_overlay_close:hover {
    transform: scale(1.08);
}

.overlay_to_cart_button {
    width: 330px;
    height: 35px;
    position: absolute;
    bottom: 80px;
    right: 60px;
    border-radius: 20px;
    border: none;
    background: var(--blue_widget);
    color: var(--background_color);
    transition: all 0.5s ease;
}

.overlay_to_cart_button:hover {
    transition: all 0.3s ease;
    background: var(--hover_change_color);
    color: var(--white_widget);
    transform: scale(1.03);
    box-shadow: 0 1px 5px 3px rgba(0, 0, 0, 0.3);
}

.overlay_to_save_button {
    width: 305px;
    height: 35px;
    border-radius: 20px;
    border: none;
    background: var(--blue_widget);
    color: var(--background_color);
    transition: all 0.5s ease;
}

.overlay_to_save_button:hover {
    transition: all 0.3s ease;
    background: var(--hover_change_color);
    color: var(--white_widget);
    transform: scale(1.03);
    box-shadow: 0 1px 5px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.fragment_div {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*CART PAGE*/
.cart_page_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: transparent;
    max-width: 1300px;
    border-radius: 30px;
    margin-bottom: 10%;
}

.cart_page_item {
    width: 100%;
    max-width: 1150px;
    flex-direction: row;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    border: 2px solid black;
    border-radius: 28px 28px 28px 28px;
    margin-top: 1%;
    margin-left: 5%;
    margin-bottom: 0.5%;
}

.cart_page_image {
    width: 100%;
    max-width: 400px;
    border-radius: 26px 0 0 26px;
    border: 1px solid rgba(0,0,0, 0.8);
}

.cart_item_info_page {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    align-items: center;
}

/*PAY PAGE*/
.pay_page_column {
    margin-top: 4%;
    margin-bottom: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/*PAYMENT COMPLETE PAGE*/
.payment_complete_column {
    margin-top: 4%;
    margin-bottom: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* USER DEFINED CARPORT*/

.user_defined_title {
    font-size: 35px;
    text-align: center;
    margin: 100px ;
}

.content_holder_user_defined {
    display: flex;
    flex-direction: row;
    gap: 60px;
    justify-content: center;
}

.carport_type_picker {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #EDEDED;
    text-align: center;
}
.carport_name {
    font-size: 15px;
}
.carport_type_description {

    font-size: 12px;
}
.user_defined_description_text {
    width: 50%;
    margin: 200px 0 100px 0;

}

.user_defined_body_text {
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.user_defined_picture_section {
    display: flex;
    justify-content: center;
}

img.user_defined_picture {
    width:100%;
    height: 955px;
    max-width: 2400px;
}
.blue_arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*FLAT ROOF SECTION*/
.user_defined_form {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    border-radius: 10px;
}
.content_holder_flat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.flat_section_container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    gap: 10px;
    border-radius: 10px;
    border: 3px solid var(--border_box_color);
}

.form_submit_button {
    background: var(--dark_blue_widget);
    color: var(--white_widget);
    border-radius: 10px;
    transition: background 0.2s ease;
}

.form_submit_button:hover {
    background: var(--hover_change_color);
}
.flat_line {
    border: 2px solid var(--text);
    width: 80%;
}

<!-- Test CSS i Alert -->

/* DASHBOARD LAYOUT */
.Dashboard {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
}

.search_input {
    width: 160px;
    height: 30px;
    border: 1px solid var(--border_box_color);
    border-radius: 6px;
    padding-left: 8px;
}


.tab {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 8px 12px;
    color: var(--text);
}

.tab.active {
    border-bottom: 2px solid black;
    font-weight: bold;
}

.tab_content {
    display: none;
}

.tab_content.active {
    display: block;
}

/* TABLE WRAPPER */
.table_container {
    margin: 1%;
    background: white;
    border: 1px solid var(--border_box_color);
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
}

/* TABLE */
.dashboard_table {
    border-collapse: collapse;
    width: 100%;
}

.dashboard_table th,
.dashboard_table td {
    border: 1px solid  var(--border_box_color);
    padding: 10px 14px;
    font-size: 15px;
}

.dashboard_table thead th {
    background: var(--background_color);
    font-weight: bold;
}

.search_input {
    margin-bottom: 2%;
}
.carport-svg-topview {
    height: 500px;
    width: 100%;
}

.flat_section_container_admin {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 95%;
    border-radius: 30px;
    border: 3px solid var(--border_box_color);
    margin-bottom: 0.4%;
    background: var(--white_widget);
    box-shadow: 0 3px 7px -1px black;
}
.flat_section_admin {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    gap:10px;
}
.flat_section_container_construction {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-bottom: 1%;
}

.flat_section_container_header{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.flat_section_container_boxes{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 85%;
}

.dropdowns_admin_construction {
    color: var(--white_widget);
    background-color: var(--text);
    width: 100%;
    height: 40px;
    text-align: center;
    font-size: 18px;
    max-width: 400px;
    border-radius: 15px;
    border: none;
}

.input_email_box {
    border: none;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.4);
    height: 30px;
    border-radius: 20px;
    text-align: center;
}

.text_area_box {
    border: none;
    box-shadow: 2px 2px 20px black;
    border-radius: 15px;
}

/*price container for admin view*/
.price_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    padding: 15px;
    background: var(--white_widget);
    border: 1px solid var(--border_box_color);
    border-radius: 10px;
    margin: 10px 0;
}
.input_markup_percentage {
    height: 50px;
    border: none;
    border-radius: 15px;
    font-size: 22px;
    text-align: center;
    width: 90%;
}

/*ADMIN OVERLAY EDIT/VIEW*/
.open_details * {
    pointer-events: none;
    cursor: pointer;
}

td svg {
    cursor: pointer;
}

#edit_modal.modal_hidden {
    display: none;
}

#edit_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal_box {
    background: var(--white_widget);
    padding: 25px;
    border-radius: 12px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.modal_box h2 {
    margin-top: 0;
    text-align: center;
}

.modal_box label {
    display: block;
    margin-top: 2%;
}

.modal_box input,
.modal_box select {
    width: 100%;
    padding: 8px;
    margin-top: 1%;
}

.close_btn {
    width: 305px;
    height: 35px;
    border-radius: 20px;
    border: none;
    background: var(--blue_widget);
    color: var(--background_color);
    transition: all 0.5s ease;
}

.close_btn:hover {
    transition: all 0.3s ease;
    background: var(--hover_change_color);
    color: var(--white_widget);
    transform: scale(1.03);
    box-shadow: 0 1px 5px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

#view_panel.view_panel_hidden {
    display: none;
}

#view_panel {
    position: fixed;
    top: 50%;
    left: 70%;
    transform: translateY(-50%);
    background: var(--white_widget);
    padding: 20px;
    border-radius: 12px;
    max-width: 300px;
    width: 100%;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.view_panel_box {
    margin: 5px 0;
}

.view_panel_box h2 {
    text-align: center;
}

/*BURGER MENU*/
.burger_btn {
    display: none;
    cursor: pointer;
}

/*MEDIA QUERY*/
@media (min-width: 1600px) {
    nav a {
        font-size: 2.2rem;
    }

    .video_container {
        height: 950px;
    }

    .product_page_image {
        max-width: 900px;
    }

    .Dashboard {
        max-width: 1400px;
    }
}

@media (max-width: 1599px) {
    nav a {
        font-size: 1.8rem;
    }

    .content_holder {
        flex-direction: row;
        gap: 20px;
    }

    .user_defined_picture {
        height: 900px;
    }
}

@media (max-width: 1199px) {
    .nav_container {
        height: 80px;
    }

    .nav_logo {
        width: 140px;
        height: 80px;
    }

    nav a {
        font-size: 1.4rem;
    }

    nav ul {
        gap: 15px;
    }

    .video_container {
        height: 500px;
    }

    .cover_video_img {
        top: 405px;
    }

    .slider_container {
        height: 440px;
    }

    .product_card_slider {
        min-width: 220px;
    }

    .login_form,
    .register_form {
        max-width: 400px;
    }

    .content_holder {
        flex-direction: column;
        align-items: center;
        margin: 0 3%;
    }

    .product_page_image {
        max-width: 600px;
        width: 100%;
        min-width: 0;
    }

    .row_price_content_holder {
        padding: 5%;
        align-items: center;
    }

    .content_holder_user_defined {
        flex-direction: row;
        gap: 15px;
        margin: 0 26% 0 25%;
    }

    img.user_defined_picture {
        height: 500px;
    }

    .cart_overlay {
        width: 380px;
    }

    .table_container {
        overflow-x: auto;
    }
}

@media (max-width: 767px) {
    .content_holder_user_defined {
        flex-direction: column;
        gap: 25px;
        margin: 0 6% 0 5%;
    }

    img.user_defined_picture {
        height: 260px;
    }
}

@media (max-width: 767px) {
    body {
        padding: 0;
    }

    nav {
        display: none;
    }

    .nav_container {
        justify-content: space-between;
    }

    .nav_logo {
        width: 140px;
    }

    .video_container {
        height: 260px;
    }

    .cover_video_img {
        top: 250px;
    }

    button.button_white,
    a.button_white_non_button {
        max-width: 140px;
        height: 42px;
        font-size: 18px;
    }

    input.input_no_border_white {
        height: 40px;
        font-size: 18px;
    }

    .slider_container {
        height: auto;
    }

    .product_card_slider {
        min-width: 180px;
        padding: 10px;
    }

    .login_form,
    .register_form {
        width: 90%;
        height: auto;
    }

    .button_row {
        flex-direction: column;
        gap: 20px;
    }

    .product_page_image {
        width: 100%;
    }

    .content_holder {
        flex-direction: column;
        align-items: center;
    }

    .product_text_field {
        margin-top: 5%;
        text-align: center;
    }

    .row_price_content_holder {
        padding-top: 10%;
        align-items: center;
    }

    .user_defined_title {
        font-size: 26px;
        margin: 50px 0;
    }

    .user_defined_description_text {
        width: 90%;
        margin: 80px 0 50px;
    }

    .user_defined_body_text {
        font-size: 22px;
    }

    img.user_defined_picture {
        height: 260px;
    }

    .cart_overlay {
        width: 100%;
        padding-top: 60px;
    }

    .overlay_to_cart_button,
    .overlay_to_save_button {
        width: 80%;
        right: 10%;
    }

    .cart_page_item {
        flex-direction: column;
        text-align: center;
        margin-left: 0;
    }

    .cart_page_image {
        max-width: 300px;
    }

    .Dashboard {
        padding: 10px 20px;
    }

    .dashboard_table th,
    .dashboard_table td {
        font-size: 12px;
        padding: 8px;
    }

    .flat_section_container_admin,
    .flat_section_container_boxes,
    .flat_section_admin {
        flex-direction: column;
    }

    .content_holder_user_defined {
        flex-direction: column;
        gap: 25px;
        margin: 0 3% 0 3%;
    }

    .table_container {
        overflow-x: auto;
    }

    .burger_btn {
        display: block;
        cursor: pointer;
    }

    #nav_menu {
        display: none;
    }
}

@media (min-width: 1200px) {
    .footer_svg {
        height: auto;
    }
}

@media (max-width: 1199px) {
    .footer_svg {
        width: 100%;
        height: auto;
        margin-top: 20%;
    }
}

@media (max-width: 767px) {
    .footer_svg {
        width: 100%;
        height: auto;
        margin-top: 30%;
    }
}