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;
}

/* Custom styles for the Create Organisation page */
.display-4 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card {
    border: 1px solid #e3e6f0;
    border-radius: 0.35rem;
    background-color: #ffffff;
}

.card-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.actions {
    display: flex;
    gap: 10px;
}

.actions .btn-link {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
 }

.actions .btn-link:hover {
    background-color: #0056b3;
 }

.toggle-switch {
    display: inline-block;
    width: 60px;
    height: 34px;
    position: relative;
}

    .toggle-switch input {
        display: none;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.btn-toggle {
    border-radius: 25px;
    border: 1px solid #007bff;
    color: #007bff;
    background-color: white;
    width: 50%;
}

    .btn-toggle.active {
        background-color: #007bff;
        color: white;
    }

.btn-group-toggle .btn input[type="radio"] {
    display: none;
}


