/* Reduce font size for the entire app */
body {
    font-size: 14px !important;  /* Adjust this as needed */
}

/* Reduce font size for specific elements */
h1 { font-size: 22px !important; }
h2 { font-size: 18px !important; }
h3 { font-size: 16px !important; }
p, div, span {
    font-size: 14px !important;  /* Paragraph and general text */
}

/* Make buttons text smaller */
.btn {
    font-size: 14px !important;
}

/* Reduce modal text size */
.modal-content {
    font-size: 14px !important;
}


/* Restore padding around the page container */
html, body {
    padding: 10px !important; /* Adjust this to fit your design */
    margin: 0 !important;
}

