.month-picker-wrapper {
    position: relative;
    display: inline-block;
}

.month-input {

}

.month-popup {
    display: none;
    position: absolute;
    top: 50px;
    background-color: #161d31;
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.month-popup .year-control {
    text-align: center;
    margin-bottom: 20px;
}

.month-popup .year-control span {
    font-size: 20px;
    font-weight: bold;
    color: #b4b7bd;
}

.month-popup .year-control button {
    background-color: #7367f0;
    border: none;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.month-popup .year-control button:hover {
    background-color: #5a56ce;
}

.month-popup .month-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    color: #b4b7bd;
}

.month-popup .month-btn {
    padding: 10px;
    background-color: #1e2746;
    color: #b4b7bd;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.month-popup .month-btn:hover {
    background-color: #5a56ce;
}

.month-popup .month-btn:focus {
    outline: none;
}

/* Highlight selected month */
.month-popup .selected-month {
    background-color: #7367f0;
    color: white;
}

.month-input:focus {
    outline: none;
}

.year-display{
    margin: 0px 45px;
}