.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
/*.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
*/
[aria-invalid="true"] + .help-block {
    color: #cf0000;
}
.table {
    position: relative;
}
.table:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    background: white;
    height: 10px;
    border-radius: 16px 16px 0 0;
}
.table:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    background: white;
    height: 10px;
    border-radius: 0 0 16px 16px;
}
thead tr {
    border: none;
}
table tbody tr {
    transition: .05s all ease;
}
.domain-index table tbody tr:hover {
    background-color: rgba(248, 250, 252);
    cursor: pointer;
}

.help-block {
    color: brown;
}

.icon-action {
    color: #c3c3c3;
    transition: color 0.3s;
    width: 20px;
}
.icon-action:hover {
    color: rgb(0 47 112) !important
}

::-webkit-scrollbar {
    background: unset;
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: darkgray;
}

:hover::-webkit-scrollbar-thumb {
    background: darkgray;
}

.pagination {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background: #f5f8ff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.pagination li {
    margin: 0 4px;
}

.pagination li a, .pagination li span {
    color: #1976d2;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.pagination li.active span,
.pagination li.active a {
    background: #1976d2;
    color: #fff;
    border-color: #1976d2;
}

.pagination li.disabled span,
.pagination li.disabled a {
    color: #bdbdbd;
    background: #f5f5f5;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

.pagination li a:hover:not(.disabled) {
    background: #e3f2fd;
    border-color: #1976d2;
}

.pagination li:first-child a,
.pagination li:last-child a {
    font-weight: bold;
}

input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    top: 2px;
    position: relative;
}

.cp {
    cursor: pointer;
}

.dropdown-item {
    white-space: nowrap;
}

.dropdown-item.active {
    background-color: unset !important;
    color: var(--default-text-color);
}
.custom-panel {
    border: 1px solid #e2e8f0;
    margin-bottom: 32px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
}
