html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@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;
}

body {
    margin-bottom: 60px;
    background-color: #fafafb;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

.navbar {
    text-align: center;
    background-color: #8353fd;
    width: 100%;
    padding: 10px;
    color: white;
}

.navbar-brand {
    margin: 0 auto;
    
}

.navbar-toggler {
    position: absolute;
    right: 0;
}
.container {
    max-width: 900px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
}

h1, h2 {
    color: #0056b3;
    font-weight: bold;
    text-align: center;
}

.form-control {
    border-radius: 5px;
}
.btn-primary {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    width: 100%;
    padding: 10px;
    background: linear-gradient(45deg, #e60054, #8353fd); /* RWS Hillier Pink to Hidcote Blue */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .btn-primary:active {
        transform: scale(0.98);
    }

.modal-content {
    border-radius: 10px;
}

.modal-header {
/*    background-color: #00a89f;*/
    background-color: #8353fd;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.form-check-label {
    font-size: 1rem;
    color: #333;
}

.question-options .form-check {
    padding-left: 25px;
}

.tooltip-inner {
    background-color: black !important; 
    color: #fff !important; 
    opacity: 1 !important;
}

.tooltip-right .arrow::before,
.tooltip-left .arrow::before,
.tooltip-top .arrow::before,
.tooltip-bottom .arrow::before {
    background-color: black !important;
}
