/* Specific styling for dashboard2.mobile.html */
.row {
    display: flex;
    justify-content: space-between;
    gap: 10px; /* Adjust gap between columns as needed */
    align-items: flex-start; /* Ensure dividers align properly with columns */
}

.column {
    flex: 1;
    margin: 5px;
}

.column-title {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.box {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 3px;
    margin-bottom: 20px;
}

.box-header {
    font-weight: bold;
    margin-bottom: 0px;
}

.box-content {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    font-size: 1.6em; /* Adjust this value to change the font size */
    color: #333;
}


/* Vertical Divider Styling */
.vertical-divider {
    width: 2px;
    background-color: #ccc;
    margin: 0 10px;
    align-self: stretch; /* Makes the divider span the full height of the row */
}

/* Responsive design for dashboard2.mobile.html */
@media (max-width: 1024px) {
    .row {
        flex-direction: column;
    }

    .column {
        margin-bottom: 20px;
    }

    .vertical-divider {
        display: none; /* Hide dividers on smaller screens */
    }
}

@media (max-width: 600px) {
    .box {
        padding: 15px;
    }

    .box-content {
        font-size: 1em;
    }
}
