.arrows-container {
    display: inline-table;
    background-color: gray;
}

.up-arrow {
    width: 30px;
    height: 30px;
    border-top: 5px solid #000000;
    border-right: 5px solid #000000;
    transform: rotate(-45deg);
    margin-top: 20px;
}

.up-arrow:hover, .down-arrow:hover {
    border-top: 15px solid #28bfa6;
    border-right: 15px solid #28bfa6;
    cursor: pointer;
}

.down-arrow {
    width: 30px;
    height: 30px;
    border-top: 5px solid #000000;
    border-right: 5px solid #000000;
    transform: rotate(135deg);
    margin: 70px;
    position: relative;
    top: -105px;
    right: 33px;
}

.date-time {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    right: -25px; 
    margin-top: -36px;
    font-size: 15px;
}

.outer {
    
}

.topArrow {
    width: 100%;
    max-width: 50px;
    height: 20px;
    background-color: red;
}


.bottomArrow {
    width: 100%;
    max-width: 50px;
    height: 20px;
    background-color: blue;
}