
  /* styles.css */
@font-face {
  font-family: 'fox';
    src: url('../fonts/font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* Apply the font to the entire page */
body {
  font-family: 'fox', sans-serif ! important;
  font-size: 15px;
  line-height: 1.6;
  color: #333 !important;
  margin: 0;
  padding: 0;
}

/* Add additional styles for headings and other elements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'fox', sans-serif;
  font-weight: bold;
  margin: 0 0 1rem 0;
}

p {
  margin: 0 0 1.5rem 0;
  font-family: 'fox', sans-serif;
}



div.dt-buttons {
  float: right;
  margin-left: 0;
  padding-left: 0;
}



        /* Custom CSS for compact table */
        .compact-table {
            font-size: 0.85rem;
            width: auto !important;
            margin: 0 auto;
        }
        
        .compact-table th, 
        .compact-table td {
            padding: 0.3rem 0.5rem;
            white-space: nowrap;
        }
        
        .card-table-container {
            max-width: 98%;
            margin: 0 auto;
            overflow-x: auto;
        }
        
        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .btn-success {
            border-color: #dee2e6;
        }
        
    


        /* Style the search container */
div.dt-search {
    float: center;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Style the search input */
div.dt-search input[type="search"] {
    width: 150px;                  /* Adjust width as needed */
    padding: 6px 10px;             /* Comfortable padding */
    border: 0.7px solid #3bc5f0;     /* Light gray border */
    border-radius: 20px;           /* Rounded corners */
    font-size: 12px;
    outline: none;
    transition: border-color 0.3s;
}

div.dt-search input[type="search"]:focus {
    border-color: #80bdff;         /* Highlight on focus */
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
}


div.dt-search input[type="search"] {
    padding-left: 35px;            /* Make space for the icon */
}

/* Style the DataTable header area */
div.dataTables_wrapper div.dataTables_filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

/* Style the title */
.card-body h4 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
    flex-grow: 1;
}

/* Style the export buttons */
div.dt-buttons {
    margin-left: auto;
    display: flex;
    gap: 5px;
}

div.dt-buttons button {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f8f9fa;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

div.dt-buttons button:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

/* Color code specific buttons */
button.buttons-copy {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

button.buttons-excel {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

button.buttons-csv {
    background: #17a2b8;
    color: white;
    border-color: #17a2b8;
}

button.buttons-pdf {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.form-control
{
   background-color: #f5f5f5 ! important;
}


a {
    text-decoration: none;
}

/* Remove underline on hover */
a:hover {
    text-decoration: none;
}

img {
    pointer-events: none;  /* Prevent clicking & dragging */
    -webkit-user-drag: none; /* Chrome/Safari */
    user-select: none;      /* Prevent selecting */
}

        
