/* Style for the button container (bottom bar) */
.button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: black;  
    padding-left: 20px; 
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);  
    display: flex;           
    justify-content: space-between;
    border-top: 2px solid #2b00ff;
    box-sizing: border-box;
    z-index: 999999;
}


/* Style for each button inside the container */
.button-container button {
    flex: 1;                 /* Allow buttons to grow and take up equal space */
    margin: 0 10px;          /* Some margin between buttons */
    padding: 10px;           /* Padding inside the buttons */
    background-color: #424242;  /* Button background color */
    color: white;
    border: none;          
    border-radius: 5px;      
    cursor: pointer;         
    transition: background-color 0.3s;
}

/* Hover state for buttons */
.button-container button:hover {
    background-color: #2b00ff;  
}

