/* Styles for Large Screens (Desktops and Large Laptops) */
@media screen and (min-width: 1024px) {
    /* Add your styles for large screens here */
}

/* Styles for Medium Screens (Laptops and Tablets) */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    /* Add your styles for medium screens here */
}

/* Styles for Small Screens (Small Tablets and Smartphones) */
@media screen and (max-width: 599px) {
    /* Add your styles for small screens here */
.btn.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
    color: var(--bg-color) !important;
    width: 150px !important;
    margin-bottom: 11px;
}


table-responsive {
    flex-shrink: 0;
    width: 111% !important;
    max-width: 120% !important;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-top: var(--bs-gutter-y);
}

}

/* Styles for Small Smartphones */
@media screen and (max-width: 319px) {
    /* Add your styles for small smartphones here */

.btn.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
    color: var(--bg-color) !important;
    width: 150px !important;
    margin-bottom: 11px;
}

table-responsive {
    flex-shrink: 0;
    width: 111%;
    max-width: 120%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-top: var(--bs-gutter-y);
}

}


@media screen and (max-width: 768px) {
    .wrapper.active #sidebar {
        left: 0;
    }
  
    #content{
        padding: 5px;
    }

	.btn.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
    color: var(--bg-color) !important;
    width: 150px !important;
    margin-bottom: 11px;
}
    
    
  }
  
  @media screen and (min-width: 768px) {
    #sidebar {
        left: 0; 
    }
  
    .sidebar {
        width: 250px;
    }
  
    #content{
        margin-left: 255px;
    }
  
    #sidebarCollapse{
        display: none;
    }
  
  
  }
  
@media (min-width: 768px){
  .col-md-6.archived{
	align-items: start;
}

.col-md-6.modal-button{
	align-items: center;
}
}