 .container {
    width: 95%;
  }

.tile {
    position: relative;
    cursor: pointer;
    padding: 15px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tile a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 15px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Icon */
.tile .icon {
    font-size: 30px;
    color: #4a90e2;
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.12);
}

/* Stat number */
.tile .stat {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-top: 5px;
}

/* Title */
.tile .title {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* Accent highlight bar */
.tile .highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #4a90e2, #6dd5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover effects */
.tile:hover a {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.tile:hover .highlight {
    transform: scaleX(1);
}

/* Optional color variations */
.bg-color-blue {
    background: linear-gradient(135deg, #4a90e2, #6dd5fa) !important;
}

/* =========================================================
   WHMCS Modern Bootstrap-Inspired Table UI
   Clean • Soft • Responsive • Premium
========================================================= */

.table-container,
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 18px;
    margin-bottom: 30px;
    background: #fff;
}

/* Main Table */
.table,
.dataTable,
table.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.04),
        0 10px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 0;
    font-size: 14px;
}

/* =========================================================
   Header
========================================================= */

.table thead th,
.dataTable thead th,
table.table thead th {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    color: #0f172a;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 16px 18px;
    border-bottom: 1px solid #dbe4ee;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* Rounded Header Corners */
.table thead th:first-child,
.dataTable thead th:first-child {
    border-top-left-radius: 18px;
}

.table thead th:last-child,
.dataTable thead th:last-child {
    border-top-right-radius: 18px;
}

/* =========================================================
   Table Body
========================================================= */

.table tbody td,
.dataTable tbody td,
table.table tbody td {
    padding: 16px 18px;
    color: #334155;
    border-bottom: 1px solid #edf2f7;
    vertical-align: middle;
    transition: all .25s ease;
    background: #fff;
}

/* Bootstrap Style Striped Rows */
.table-striped tbody tr:nth-of-type(odd),
.table tbody tr:nth-child(odd),
.dataTable tbody tr:nth-child(odd) {
    background: #fcfdff;
}

/* Hover Effect */
.table tbody tr:hover td,
.dataTable tbody tr:hover td {
    background: #f1f7ff;
    color: #0f172a;
}

/* Remove Last Border */
.table tbody tr:last-child td,
.dataTable tbody tr:last-child td {
    border-bottom: none;
}

/* =========================================================
   Links
========================================================= */

.table a,
.dataTable a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: .2s ease;
}

.table a:hover,
.dataTable a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* =========================================================
   Badges / Labels
========================================================= */

.label,
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    border: none;
}

/* Example Status Colors */
.label-success,
.badge-success {
    background: rgba(34,197,94,.12);
    color: #15803d;
}

.label-warning,
.badge-warning {
    background: rgba(245,158,11,.12);
    color: #b45309;
}

.label-danger,
.badge-danger {
    background: rgba(239,68,68,.12);
    color: #b91c1c;
}

.label-info,
.badge-info {
    background: rgba(59,130,246,.12);
    color: #1d4ed8;
}

/* =========================================================
   Search Box
========================================================= */

.dataTables_filter {
    margin-bottom: 18px;
}

.dataTables_filter input {
    background: #fff;
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    padding: 10px 14px;
    min-width: 240px;
    font-size: 14px;
    color: #334155;
    transition: all .25s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.dataTables_filter input:focus {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
    outline: none;
}

/* =========================================================
   Pagination
========================================================= */

.dataTables_wrapper .dataTables_paginate {
    margin-top: 20px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: none !important;
    background: #f1f5f9 !important;
    color: #334155 !important;
    border-radius: 10px !important;
    padding: 8px 14px !important;
    margin: 0 3px;
    transition: .2s ease;
    font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #dbeafe !important;
    color: #1d4ed8 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(37,99,235,.25);
}

/* =========================================================
   Info Text
========================================================= */

.dataTables_info {
    color: #64748b;
    font-size: 13px;
    margin-top: 15px;
}

/* =========================================================
   Sorting Icons Fix
========================================================= */

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    background-position: right 12px center !important;
}

/* =========================================================
   Responsive Mobile
========================================================= */

@media (max-width: 768px) {

    .table,
    .dataTable,
    table.table {
        border-radius: 14px;
    }

    .table thead th,
    .dataTable thead th,
    .table tbody td,
    .dataTable tbody td {
        padding: 13px 14px;
        font-size: 13px;
    }

    .dataTables_filter input {
        width: 100%;
        min-width: 100%;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 7px 10px !important;
        font-size: 12px;
    }
}

/* =========================================================
   Optional Glass Effect
========================================================= */

.table-modern-glass {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.85);
}

/* =========================================================
   Smooth Animation
========================================================= */

.table tbody tr,
.dataTable tbody tr {
    transition: transform .15s ease, box-shadow .15s ease;
}

.table tbody tr:hover,
.dataTable tbody tr:hover {
    transform: translateY(-1px);
}

ul.top-nav > li > a {
  padding: 6px 10px;
  color: black;
  line-height: 20px;
  text-decoration: none;
}

a.list-group-item, button.list-group-item {
  color: #000;
}

.domain-checker-container {
  margin: 20px 0 !important;
  padding: 0 !important;
  background-color: #ffce44 !important;
  -moz-border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -o-border-radius: 10px !important;
  border-radius: 10px !important;
  background: -webkit-gradient(linear,0 0,0 100%,from(#ffb201),to(#ffd960)) !important;
  background: -webkit-linear-gradient(top,#ffd960,#ffb201) !important;
  background: -moz-linear-gradient(top,#E37434,#E37434) !important;
  background: -ms-linear-gradient(top,#ffd960,#ffb201) !important;
  background: -o-linear-gradient(top,#ffd960,#ffb201) !important;
}

