/* Saivercon DNS Styles */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.saivercon-container {
    width: 100%;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

.saivercon-container h2 {
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.saivercon-form {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.saivercon-form .form-group {
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.saivercon-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.saivercon-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.saivercon-form .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.saivercon-form .btn:hover {
    background-color: #0056b3;
    font-family: 'Poppins', sans-serif;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    font-family: 'Poppins', sans-serif;
    table-layout: fixed;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    font-family: 'Poppins', sans-serif;
    word-wrap: break-word;
    word-break: break-word;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    font-family: 'Poppins', sans-serif;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
    font-family: 'Poppins', sans-serif;
}

.table .table {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.table .btn {
    padding: 5px 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.table .btn-danger {
    background-color: #dc3545;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.table .btn-danger:hover {
    background-color: #c82333;
    font-family: 'Poppins', sans-serif;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    font-family: 'Poppins', sans-serif;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    font-family: 'Poppins', sans-serif;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #007bff;
}

input:checked + .slider:before {
    transform: translateX(26px);
}
