#bank-div {
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: calc(100% - 100px); /* Full width minus 50px on each side */
    font-family: Arial, sans-serif;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px; /* Increase padding for better usability */
    border: 2px solid #ccc; /* Thicker border for better visibility */
    border-radius: 12px; /* Slightly rounder corners for a modern look */
    margin: 0 auto; /* Center the box horizontally */
}

/* Style for the dropdown */
#bank-dropdown {
    font-size: 2rem; /* Larger font size for better readability */
    padding: 10px; /* Add padding for touch-friendly elements */
    border-radius: 8px; /* Smooth edges */
    border: 2px solid #ccc; /* Visible border */
}

/* Style for the text box */
#bank-textbox {
    font-size: 2rem; /* Larger font size */
    text-align: center;
    border-radius: 8px; /* Smooth edges */
    border: 2px solid #ccc; /* Visible border */
    padding: 10px; /* Add padding for better usability */
    width: 80px; /* Wider box for better visibility */
}

#session-profit-textbox {
    font-size: 2rem; /* Larger font size */
    text-align: center;
    border-radius: 8px; /* Smooth edges */
    border: 2px solid #ccc; /* Visible border */
    padding: 10px; /* Add padding for better usability */
    width: 80px; /* Wider box for better visibility */
}



/* Label styling */
label {
    font-size: 2rem; /* Increase label font size */
    font-weight: bold; /* Make the label bold */
}

/* Mobile-friendly adjustments */
@media (max-width: 600px) {
    #bank-div {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        gap: 15px; /* Add spacing between stacked elements */
        padding: 15px;
    }
    #bank-dropdown,
    #bank-textbox {
        width: 100%; /* Full width for better usability on smaller screens */
    }
}