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;
}

.form-row {
    display: flex !important;
}
.btn-primary {
    background-color: #007bff; /* Customize button color if needed */
}

.form-group button {
    width: 100%; /* Makes the button fill the container */
}

.table-limited {
    width: 100%;
    table-layout: fixed; /* Ensures the table respects the width */
}

.table-limited th,
.table-limited td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-limited th.url-column,
.table-limited td.url-column {
    max-width: 500px; /* Adjust the max-width as needed */
}

.table-limited th.response-message-column,
.table-limited td.response-message-column {
    max-width: 500px; /* Adjust the max-width as needed */
}

/* Responsive design enhancements */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
    }

    .table-limited th,
    .table-limited td {
        white-space: normal;
    }
}

.api-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.api-table th,
.api-table td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    text-align: left;
}

.api-table thead {
    background-color: #343a40;
    color: white;
}

.api-table code {
    background-color: #f8f9fa;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 90%;
}
