main {
    padding: min(30px, 7%);
    grid-area: main;
    background-color: var(--base-clr);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    grid-template-areas: "AA AA BB CC" "DD DD BB CC" "DD DD BB CC" "DD DD EE EE";
}

.box:nth-child(1) {
    grid-area: AA;
}

.box:nth-child(2) {
    grid-area: BB;
}

.box:nth-child(3) {
    grid-area: CC;
}

.box:nth-child(4) {
    grid-area: DD;
}

.box:nth-child(5) {
    grid-area: EE;
}


/* -- Main-Config -- */

.flex {
    display: flex;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.flex-colm {
    flex-direction: column;
}

.flex-SB {
    justify-content: space-between;
}

.flex-SA {
    justify-content: space-around;
}

.flex-SE {
    justify-content: space-evenly;
}

.center {
    text-align: center;
}


/* -- Box --*/

.box {
    border-radius: var(--main-card-radius);
    background-color: var(--box-background-color);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.box-header-titel {
    border-bottom: 2px solid var(--box-main-color);
    border-right: 2px solid var(--box-main-color);
    border-top-left-radius: var(--main-card-radius);
    border-bottom-right-radius: var(--main-card-radius);
    background-color: var(--base-clr);
    font-size: 0.8rem;
    width: 35%;
    padding: 0.3rem 0;
}

.box-content {
    width: 100%;
    height: 100%;
    padding: 0.5rem 3rem;
}

.box-content-row {
    padding: 1rem 0;
}


.date {
        display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--box-main-color);
    background: none;
    color: var(--text-clr);
    padding: 0.2rem 0.8rem;
    margin-right: 1rem;
}

/* -- Ladesystem -- */

.radio-box {
    flex-direction: column;
    gap: 1rem;
}

.radio-box-header-titel {
    gap: 0.6rem;
}

.radio-box-content {
    margin-left: 3rem;
}

.radio-group {
    gap: 10px;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group label {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--icon-box-color);
    border-radius: 999px;
    background-color: #f5f5f5;
    cursor: pointer;
    user-select: none;
    transition: all 0.4s ease;
    padding: 0.2rem 1rem;
}

.radio-group label:hover {
    background-color: #e8e8e8;
}

.radio-group input[type="radio"]:checked+label {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    font-weight: bold;
}


/* --- Standort Ladesystem --- */

.box-content-row.flex {
    gap: 2rem;
}



.input-box-version-B {
    display: none;
    border-radius: 16px;
    align-items: center;
    width: 100%;
    gap: 2rem;
    padding: 0.3rem 2rem;
    background: white;
}

.infobox-ladesystem {
    border-radius: 16px;
    border: 2px solid var(--box-main-color);
    padding: 0.8rem;
}

.infobox-ladesystem-img img {
    width: 120px;
    height: auto;
    object-fit: cover;
}

.icon-box-B {
    width: 75px;
    height: 75px;
    border-radius: 14px;
    background: #b8cad6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-B .material-symbols-outlined {
    font-size: 50px;
}

.standort-text h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}

.line {
    height: 4px;
    margin: 8px 0 16px;
    background: #1f2933;
    border-radius: 10px;
}

.standort-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    color: #777;
    line-height: 1.25;
}

.textarea-group textarea {
    width: 100%;
    min-height: 160px;
    padding: 1rem 0;
    resize: vertical;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    line-height: 1.5;
    outline: none;
}

.textarea-group textarea:focus {
    border-color: #333;
}

.textarea-group textarea::placeholder {
    color: transparent;
}

.box-content-text {
    gap: 1rem;
}



.notion {
    padding: 4rem;
}