#my-body {
    background-color: #eccc1e;
    --bs-body-bg: #f4ecc5;
    /*display: flex;*/
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #e8d784;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.container2 {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #ecd66c;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

h1 {
    text-align: center;
    color: #333;
}

.my-nav {
    border-style: solid;
}

.border-black-rounded div {
    border-color: black;
    border-radius: 10px;
}

img {
    display: inline-block;
    height: auto;
    max-width: 80px;
}


/* Вложенные dropdown для меню отчётов */
.dropdown-year {
    position: relative;
}

.dropdown-months {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 150px;
    background: white;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
    z-index: 1001;
}

.dropdown-year:hover .dropdown-months {
    display: block !important;
}
