.modelsContainer {
    background: #2D2D2D;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 50px;
    padding: 50px;
}

.model {
    display: block;
    margin: 25px;
}

.dropdowns {
    margin-bottom: 50px;
    justify-content: space-evenly;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    /* Adjusts spacing dynamically */
    flex-wrap: wrap;
    /* Allows items to stack if needed */
}

.dropdown {
    max-width: 200px;
    width: 200px;
    overflow: hidden;
}

.dropdown-btn {
    background-color: #564AFF;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    max-width: 200px;
    border-radius: 20px;
    outline: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.dropdown-btn:hover{
    background-color:#4338ca;
}

.dropdown-btn p {
    margin: 0;
    white-space: nowrap;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background-color: #f1f1f1;
    border-radius: 20px;
}

.dropdown-content p {
    padding: 10px 10px;
    margin: 0px;
}

.dropdownItem {
    color: #564AFF;
    cursor: pointer;
}

.dropdownItem:hover {
    background-color: #d1d1d1;
}

.arrow {
    width: 25px;
    margin: 0;
    transition: transform 0.3s ease;
}

.arrow.rotated {
    transform: rotateX(180deg);
}

.ModelBtn {
    color: #ffffff;
    background-color: #E566FF;
    padding: 7px 0px;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease,background-color 0.3s ease;
}

.ModelBtn:hover{
    transform: scale(1.1);
    background-color: #C94CE6;
}

.ModelBtn a {
    text-decoration: none;
    padding: 7px 25px;
}

.ModelBtn a:hover {
    color:#ffffff
}

.ChartBtn {
    background-color: greenyellow;
    padding: 7px 25px;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*Chart.js stuff*/

.chartContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
    justify-content: center;
}

.chart {
    max-height: 400px;
    max-width: 800px;
}

.metricContainer {
    background: #2D2D2D;
    display: flex;
    flex-direction: column;
    padding: 50px;
}

.metricCardContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

.metricCard {
    background: white;
    
    border: solid black;
    border-radius: 16px;
    box-shadow: 4px 4px 4px rgba(255, 255, 255, 0.5);
    border-width: 2px;

    min-width: 200px;
    min-height: 130px;

    font-size: xx-large;
    text-align: center;
    align-content: center;
    color: black;
}

.pageTitle hr {
    margin-top: 20px;
}

.technicalDetailContainer {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

.technicalDetailContainer ul{
    display: flex;
    flex-direction: column;
}

.customAlert {
    background: #E566FF;
    text-align: center;
    color: white;
    border-radius: 12px;
    padding: 25px;
    max-width: fit-content;
    margin-bottom: 25px;

    margin-left: auto;
    margin-right: auto;

    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}