.custom-select-date {
    height: fit-content;
    width: 60px;
    border-radius: 10px;
    border: 1px solid #a5a5a5;
    background-color: transparent;
    cursor: pointer;
}

.custom-select-date:hover,
.custom-select-date.selected {
    background-color: #94ffe466;
}

.custom-select-date:disabled {
    background-color: #c6c6c6a9;
}

.custom-dmc-button {
    background-color: transparent;
    height: 90px;
    text-wrap: pretty;
    width: 60px;
    color: black;
    padding: 0;
    margin: 0;
    width: fit-content;
}

.custom-dmc-button:hover{
    background-color: transparent;
    color: black;
}

.custom-dmc-button.info{
    height: 35px;
    color: #7e7e7e;
    margin: 4px 8px
}

.custom-dmc-button.info:hover{
    color: #353535;
}

.custom-dmc-button:hover{
    background-color: transparent;
    color: black;
}

.custom-dmc-button:active{
    transform: translateY(0); /* Disable pressed effect */
}

.custom-dmc-text {
    width: 280px;
    min-height: 40px;
    height: fit-content;
    text-wrap: pretty;
    padding: 8px 15px;
    background-color: #dedede59;
    font-size: 14px;
}

.default-btn{
    height: 30px;
    margin-top: 10px;
    padding: 5px 14px;
    font-size: small;
    background-color: #3269c2;
}

.default-btn.danger{
    color: #3558b9;
    border: 1px solid #406be0;
    background-color: white;
}

.default-btn:hover{
    background-color: #3269c2;
    border: none;
    opacity: 0.75;
}

.default-btn.danger:hover{
    background-color: #d11313;
    color: white;
    opacity: 1;
}

.dmc-background-image-arrow {
    width: 22px;
    height: 40px;
    border-radius: 5px;
    margin: auto;
    margin-left: 3px;
    margin-right: 3px;
    color: transparent;
    background-color: transparent;
    align-items: center;
    cursor: pointer;
}

.dmc-background-image-arrow:hover {
    color: white;
    background-color: #575757;
}

.dmc-background-image-arrow:disabled {
    color: transparent;
    background-color: transparent;
    cursor: default
}

.default-btn:disabled,
.default-btn.danger:disabled {
    background-color: #d9d9d9a8;
    color: #9e9e9e;
    border: none;
}

.mantine-Select-item[data-selected]{
    background-color: rgb(55, 58, 64);
}

.mantine-Select-item[data-selected]:hover{
    background-color: rgb(55, 58, 64);
}

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}