body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}
.navbar {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff !important;
}
.nav-link {
    font-size: 1.1rem;
    margin-left: 10px;
    color: #fff !important;
}
.nav-link:hover {
    color: #3498db !important;
}
.btn-danger.nav-link {
    background: none;
    border: none;
    padding: 10px 0px;
    font-size: 1.1rem;
    color: white !important;
}
.btn-danger.nav-link:hover {
    background: rgba(255, 0, 0, 0.1);
}
.alert {
    margin-top: 20px;
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.table-hover tbody tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.3s ease;
}
.btn {
  
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-primary {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #384b5f, #41576d);
}
.btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
}
.btn-danger:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}
.btn-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
}
.btn-success:hover {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}
 .btn-secondary {
        background:linear-gradient(135deg, #2c3e50, #34495e);
        border: none;
    }
    .btn-secondary:hover {
        background: linear-gradient(135deg, #384b5f, #41576d);
    }
.badge {
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.9rem;
}
.badge.bg-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}
.badge.bg-secondary {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.client-card,.dns-record-card, .domain-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}
.client-card:hover, .dns-record-card:hover ,  .domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-text {
    font-size: 0.9rem;
    color: #555;
}
.card-header {
    border-radius: 10px 10px 0 0;
   
color: #2c3e50 !important;

}

div:where(.swal2-container) button:where(.swal2-styled):not([disabled]) {
    
    border-radius: 8px;
}

.swal2-popup{
    border-radius: 15px;
}
.btn-sm {
    padding: 5px 10px;
    font-size: 0.8rem;
}
.dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    border-radius: 10px;
}

.card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
    color: var(--bs-card-title-color);
    font-size: 1.1rem;
    font-weight: 500;
}
  
.dropdown-menu {
    border: none;
    border-radius: 10px;
    position: fixed !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 10px;
    animation: fadeIn 0.3s ease-in-out;
    z-index: 1051;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
   

}

.input-group {
    max-width: 300px;
}
.dropdown-item {
   
    font-size: 0.9rem;
    padding: 8px 15px;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 2px 0px;
}


.dropdown-item:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateX(5px);
}
.dropdown-item.text-danger:hover {
    background-color: #e74c3c;
    color: #fff !important;
}
.dropdown-item.text-alert:hover {
    background-color: #caa232;
    color: #fff !important;
}
.translate-middle-x {
    transform: translateX(-10px) !important;
}
.form-control {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.9rem;
}
.form-label {
    font-weight: 500;
    color: #2c3e50;
}
.form-check-input:checked {
    background-color: #3498db;
    border-color: #3498db;
}
.form-select {
    border-radius: 8px;
    padding: 10px;
    font-size: 0.9rem;
}
.btn-outline-secondary {
    border: 1px solid #ced4da;
    padding: 10px;
    transition: all 0.3s ease;
}
.btn-outline-secondary:hover {
    background-color: #2c3e50;
    color: #fff;
    border-color: #34495e;
}
.fa-user-circle {
    color: #2c3e50;
}

div:where(.swal2-icon).swal2-info {
    border-color: #198754;
    color: #198754;
}