﻿/* ********************************************************************************************
* OntarioTECK VBA Developers
* Developed by Gustavo Miller
* 
* Date Created : 7/7/2026 6:31:54 AM
* 
* Location: C:\Users\developer\source\repos\Curriculum\ASP.Net 6\CV\wwwroot\css\
* Filename: pain\painmedicationlist.css
* ********************************************************************************************/

/* Default: mobile styles */
.grid-header-opt,
.medication-help,
.regular-cell {
    display: none;
}

.grid-header {
    text-align: left !important;
}

.grid-table {
    grid-template-columns: 70px 180px 30px;
}

#medicationprofile {
    display: none;
}

/* Tablet and up (≥768px) */
@media (min-width: 768px) {
    #medicationprofile {
        display: block;
    }

    .grid-header {
        text-align: center !important;
    }

    .grid-header-opt,
    .medication-help,
    .regular-cell {
        display: block; /* or whatever you need */
    }

    .grid-table {
        grid-template-columns: 110px 230px 100px 100px 130px 90px;
    }
}
