@charset "UTF-8";
/* CSS Document */

.round-btn {
    display: none;
    width: 7vw;
    aspect-ratio: 1 / 1;
    
    /*margin: 0 auto;*/
    
    /*margin-left: auto;
    margin-right: auto;*/
    
    margin-left: 0;
    margin-right: 0;
    
    /*margin-bottom: 1vw;*/
    
    
    padding: 0;
    display: inline-block;
   
    text-align: center;

    color: white;
    border: none;
    cursor: pointer;
    font-size: 5vw;
    font-family: Arial, sans-serif;
    background-color: aqua;
}

.round-btn.left {
}

.round-btn.right {
}

.round-btn:active {
    background-color: #45a049;
    /* Darker background color when clicked */
}
