.desktop {
    display: block;
}
.mobile {
    display: none;
}
@media screen and (max-width: 768px) {
    td {
        font-size: 0.8rem;
    }
}
@media screen and (max-width: 767px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .location-title {
        max-width: 160px;
        text-overflow: ellipsis; /* enables ellipsis */
        white-space: nowrap; /* keeps the text in a single line */
        overflow: hidden; /* keeps the element from overflowing its parent */
    }
    .zone {
        font-weight: 700;
    }
    .header {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }
    .header h3 {
        margin: 0;
        padding: 0;
    }
    .control-sheet-list {
        /* font-size: 0.9rem; */
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-height: 700px;
        overflow: auto;
        margin: 0.5rem 0 0 0;
        /* padding: 0.5rem; */
    }
    .control-sheet-list p {
        margin: 0;
        padding: 0;
    }
    .control-sheet-info {
        border-radius: 15px;
        padding: 0.5rem;
    }
    .currentControlSheet {
        border:none;
        background: rgba(233,245,240,255);
    }
    .notCurrentControlSheet {
        background: none;
        border: 1px solid #cccccc;
    }
    .control-sheet-header{
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #e9e9e9;
    }
    .img-container,
    .control-sheet-actions a {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
    .show-info .img-container {
        width: 16px;
        height: 16px;
    }
    .img-container img,
    .control-sheet-actions img {
        width: 100%;
        height: 100%;
    }
    .control-sheet-actions {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    .header-info,
    .date-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .header-info {
        display: flex;
        gap: 1rem;
    }
    .header-info .show-info {
        font-size: 22px;    
        font-weight: 700;
    }
    .show-info-container {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        padding: 0 0.5rem;
    }
    .show-info-container .show-info {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 14px;
    }
}