.div-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin: 10px;
}

.odd { 
    background-color: #d9edf7; 
}

.generated_for_mobile { 
    margin-bottom: 30px 
}

.btn-primary-pulse {
    box-shadow: 0 0 0 0 #5a99d4;
    -webkit-animation: pulse 1.5s infinite;
}

.btn-primary-pulse:hover {
-webkit-animation: none;
}

@keyframes pulse {
0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 #5a99d4;
}

70% {
    transform: scale(1.05);
    box-shadow: 0 0 90px 0 #5a99d4;
}

100% {
    transform: scale(.9);
    box-shadow: 0 0 0 0 #5a99d4;
}
}


/*
Block for showing meetings table 
on mobile devices specifically.
*/

@media only screen and (max-width: 760px) 
            and (max-device-width: 1024px)  {


table, table-striped, table-bordered, table-hover, 
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 #959697; }

td { 
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee; 
    position: relative;
    padding-left: 50%; 
}

td:before { 
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    right: 6px;
    width: 45%; 
    padding-right: 10px; 
    white-space: nowrap;
}

/*
Label the data
*/
td:nth-of-type(1):before { content: ""; }
td:nth-of-type(2):before { content: "Meeting Name"; }
td:nth-of-type(3):before { content: "Virtual"; }
td:nth-of-type(4):before { content: ""; }
td:nth-of-type(5):before { content: "Start Time"; }
td:nth-of-type(6):before { content: "Duration"; }
td:nth-of-type(7):before { content: "Formats"; }
}
