﻿*, *::before, *::after {
    box-sizing: border-box;
}

.container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.left-container {
    flex: 0 0 calc(70% - 14px) !important;
    width: calc(70% - 14px) !important;
    max-width: calc(70% - 14px) !important;
    min-width: 0;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.right-container {
    flex: 0 0 calc(30% - 6px) !important;
    width: calc(30% - 6px) !important;
    max-width: calc(30% - 6px) !important;
    min-width: 0;
    background-color: #ffffff; 
}

.left-container *, .right-container * {
    max-width: 100%;
}

.left-container-box {
    margin-top: 16px;
    margin-bottom: 16px;
    background-color: #f0f4f8;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}



