@media screen and (max-width: 768px) {
    .header-logo {
        width: 300px;
    }

    .scrollable-content {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        background-color: #f7f7f7;
        width: 100%;
        padding: 10px 0 0 20px; 
        box-shadow: 0px 6px 10px -3px #ebebeb;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        width: 100%;
        height: 100px;
        display: flex;
        flex-direction: row;
        box-shadow: 0px 4px 6px -2px #ebebeb;
    }

    .mobile-sidebar {
        position: fixed;
        width: 40%;
        height: 100vh;
        display: none;
        flex-direction: column;
        background-color: #532964;
        z-index: 1000;
    }

    .sidebar {
        display: none;
    }

    .notification-container {
        width: 20%;
    }

    .account-container {
        width: 20%;
    }

    .check-in-container {
        width: 25%;
    }
    
    .check-in-button {
        width: 80%;
    }
    
    .header-items-border {
        width: 200px;
        right: auto;
    }
    
    .dashboard-details-container {
        margin-right: 10px;
    }

    .sales-detail-container {
        width: 80%;
    }
}