@media screen and (max-width: 768px) {
    body {
        font-size: 1.125rem;
    }

    .nav-tabs {
        padding-bottom: 0.5rem;
    }

    .nav-link {
        padding: 0.25rem 0.5rem;
        transition: 0.2s ease all;
    }

    .nav-tabs .nav-link:hover,
    .nav-tabs .nav-link.active {
        background-color: var(--bs-primary);
        border-color: #dee2e6 #dee2e6 #dee2e6;
        border-radius: 0.5rem;
        color: white;
    }

    .btn-group .btn {
        font-size: 1rem;
    }

    .inputpostbutton {
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 0.7rem !important;
    }
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    body {
        /* shrink the font size */
        font-size: 1rem;
    }

    .btn {
        --bs-btn-font-size: 1rem;
    }

    .form-control {
        font-size: 1rem;
    }
    .form-select {
        font-size: 1rem;
    }
    .card-body {
        padding: 0.5rem;
    }

    /* Force table to not be like tables anymore */
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border: 1px solid #ccc;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        width: 100%;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
}
