body {
    background-color: #0e0e0e;
    color: white;
}
#btnLoadMore:hover {
    background-color: #007bff;
    color: cornflowerblue;
    border-color: #007bff;
}

h2 {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.table {
    background-color: #1a1a1a;
    color: white;
}

    .table thead {
        background-color: #222;
    }

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #2a2a2a;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #1f1f1f;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.pagination {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
}

    .pagination a,
    .pagination span {
        display: inline-block;
        padding: 6px 12px;
        margin: 0 4px;
        border: 1px solid #444;
        border-radius: 4px;
        background-color: #1e1e1e;
        color: white;
        text-decoration: none;
    }

        .pagination a:hover {
            background-color: #007bff;
            color: white;
            border-color: #007bff;
        }

    .pagination span {
        font-weight: bold;
        background-color: #007bff;
        color: white;
    }


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;
}