﻿.card-wrapper {
    display: flex;
    justify-content: center; /* Aligns content to the right */
    padding: 1rem;
}


.card-container {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: white;
    max-width: 1000px;
    border: 1px solid #e0e0e0;
}

.card-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
}

.main-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 40px;
    padding-bottom: 20px;
}


.sidebar-section {
    width: 60px;
    min-width: 50px;
    max-width: 60px;
    background-color: var(--mud-palette-primary);
    padding: 1rem;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Apply only for desktop view (≥ 1024px for example) */
@media (min-width: 1024px) {
    .card-container {
        min-width: 750px; /* set whatever minimum width you want */
    }
}
