
* {
    scrollbar-color: #cbd5e0 #f7fafc;
    scrollbar-width: thin; /* Firefox */
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.com-date-picker {
    > .body {
        display: flex;
        flex-direction: row;

        > .inputs {
            border: black solid 1px;
        }

        > .images {
            align-items: center;
            justify-items: center;
            margin-left: auto;
            width: 22px;
            height: 100%;
        }
    }

    > .modal-date {
        display: flex;
        position: fixed;
        justify-content: center;
        align-items: center;
        z-index: 5000;
        inset: 0;

        > .box {
            position: relative;
            flex-direction: column;
            z-index: 5001;
            margin-right: 1rem;
            margin-left: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-radius: 0.5rem;
            background-color: #ffffff;
            padding: 1.5rem;
            width: 300px;
            overflow: hidden;

            > .title {
                display: flex;
                flex-direction: row;
            }

            > .body {
                display: flex;
                flex-direction: column;

                > .head {
                    display: flex;
                    flex-direction: row;

                    > div {
                        width: 50px;
                    }
                }
            }
        }
    }

    img,
    svg {
        max-width: 100%;
        max-height: 100%;
        object-fit: scale-down;
    }
}

.icon-active:active {
    transform: scale(0.8);
    transition: 200ms ease;
}

.icon-active:active {
    transform: scale(0.8);
    transition: 200ms ease;
}
