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;
}


/* Table for Reclamacion List */

.table-container {
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling if needed */
    display: flex;
    justify-content: flex-start; /* Centers the table if it's smaller than 100% */
}

.table {
    width: auto; /* Makes the table shrink to its content */
    max-width: 100%; /* Prevents it from overflowing */
    border-collapse: collapse;
    font-size: 14px;
    min-width: 50%; /* Ensures it doesn’t become too small */
}

    .table th, .table td {
        padding: 8px 12px;
        text-align: left;
        border: 1px solid #ddd;
        white-space: nowrap; /* Prevents text from wrapping */
    }

    .table th {
        background-color: #f4f4f4;
        font-weight: bold;
    }

    /* Zebra striping */
    .table tbody tr:nth-child(even) {
        background-color: #f9f9f9;
    }

/* Responsive tweaks */
@media screen and (max-width: 600px) {
    .table-container {
        overflow-x: auto;
    }

    .table {
        width: 100%;
    }

        .table th, .table td {
            padding: 6px 8px;
            font-size: 12px;
        }
}


.topic-link {
    color: #808080; /* Change to your preferred color */
    text-decoration: none; /* Removes the underline */
    font-weight: bold; /* Makes the text bold */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.topic-link:hover {
        color: #0056b3; /* Darker shade when hovering */
        text-decoration: underline; /* Underline appears on hover */
    }