html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Style for the header section */
.management-header {
    background-color: #f0f0f0; /* Light gray background */
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Style for the filter section */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

    .filters div {
        width: 220px;
        margin-bottom: 10px;
    }

    .filters label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }

/* Style for the table */
#ticketTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    #ticketTable th, #ticketTable td {
        padding: 10px;
        text-align: left;
        border: 1px solid #ddd;
    }

    #ticketTable th {
        background-color: #f0f0f0;
    }

    #ticketTable tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    /* Make the "A/A" column stand out with a red background */
    #ticketTable td:first-child, #ticketTable th:first-child {
        background-color: red;
        color: white;
        font-weight: bold;
    }

/* Style for the checkboxes and inputs */
.filters input[type="checkbox"] {
    margin-right: 10px;
}

.filters select, .filters input[type="date"], .filters input[type="text"] {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* Style for the search button */
button[type="submit"] {
    background-color: #258cfb;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    button[type="submit"]:hover {
        background-color: #1a72c1;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .filters {
        flex-direction: column;
        align-items: flex-start;
    }

        .filters div {
            width: 100%;
        }
}
