:root {
    --primary-color: #FB610A;
    --secondary-color:  #3E3EF4;
  }
  .bg-primary-gradiant{
    background: linear-gradient(150deg,rgba(62, 62, 244, 1) 0%, rgba(97, 97, 255, 1) 52%, rgba(115, 115, 255, 1) 100%);
  }


  body { 
    background-color: #f8f9fa; 
    font-family: 'Open Sans', sans-serif; 
    padding: 2rem; 
}
@media (min-width: 1200px) {
    .sidenav.fixed-start~.main-content {
        margin-left: 15.125rem;
    }
}
.card-table {
    background: #fff;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.table thead th {
    /*background-color: #f8f9fa;*/
    color: #8392ab;
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.table thead th:hover {
    color: #344767;
}

/* Sorting Icons */
.sort-icon {
    display: inline-block;
    margin-left: 5px;
    font-size: 0.8rem;
    opacity: 0.3;
}
.sort-active {
    opacity: 1;
    color: #7928ca;
}

.table tbody td {
    /*padding: 0.75rem 1.5rem;*/
    font-size: 0.875rem;
    color: #67748e;
    vertical-align: middle;
    border-bottom: 1px solid #e9ecef;
}

.pagination-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
    border: 1px solid #e9ecef;
    background: #fff;
    color: #67748e;
    text-decoration: none;
    margin: 0 2px;
}

.pagination-btn.active-page {
    background: linear-gradient(310deg, #7928ca, #ff0080);
    color: #fff;
    border: none;
}

.pagination-btn:hover:not(.active-page) {
    background-color: #e9ecef;
}

.htmx-request {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}
.form-select.form-select-sm{
  min-width: 60px;
}
.dropdown .dropdown-toggle:after, .dropup .dropdown-toggle:after,.dropdown .dropdown-menu:before{
  content: none!important;
}

.select-tag .ts-control{
    border: none!important;
}
.preview-img{
    max-width: 350px;
}

.pagination a{
    font-weight: bold;
}
.pagination .page-item.active a{
    color: white;
}
.ql-container{
    height: 80%!important;
}
.form-group{
    width: 100%;
}

/*TABLE MOBILE*/

  
  @media screen and (max-width: 600px) {
    table {
      border: 0;
    }
  

    
    table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    table tr {
      border-bottom: 3px solid #ddd;
      display: block;
      margin-bottom: .625em;
    }
    
    table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
    }
    
    table td::before {
      /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    table td:last-child {
      border-bottom: 0;
    }
  }

/*TABLE MOBILE END*/
.link-primary:hover svg{
    fill: var(--primary-color);
}