﻿/* Smartphones (portrait and landscape) ----------- testing deploy app */
@media only screen and (min-device-width : 324px) and (max-device-width : 480px) {
    .updateGridFontSize {
        font-size: 22px;
    }
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
    .updateGridFontSize {
        font-size: 22px;
    }
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 324px) {
    .updateGridFontSize {
        font-size: 22px;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .updateGridFontSize {
        font-size: 22px;
    }
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    .updateGridFontSize {
        font-size: 22px;
    }
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    .updateGridFontSize {
        font-size: 22px;
    }
}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
    .updateGridFontSize {
        font-size: 25px;
    }
}

/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
    .updateGridFontSize {
        font-size: 25px;
    }
}

/* iPhone 4 ----------- */
@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
    .updateGridFontSize {
        font-size: 22px;
    }
}

/* Add small margins on left and right for mobile devices */
.mobile-margin {
    margin-left: 10px;
    margin-right: 10px;
}

/* Ensure the margin applies only in mobile view */
@media (min-width: 768px) {
    .mobile-margin {
        margin-left: auto;
        margin-right: auto;
        max-width: 1200px; /* Optional: Restrict max width on larger screens */
    }
}


.mobile-container {
    max-width: 95%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mobile-container {
        max-width: 1200px;
    }
}
