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%;
}
.custom-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
body {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
    .navbar-custom {
        padding: 0.5rem;
    }

}

/* Ensure the logo container is responsive */
.logo-container {
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    align-items: center; /* Center the logo vertically */
    padding: 10px; /* Add some padding */
}

    /* Make the logo responsive and add margins */
    .logo-container .logo {
        max-width: 100%; /* Ensure the logo doesn't exceed the container's width */
        height: auto; /* Maintain the aspect ratio */
        margin-left: 20px; /* Add left margin */
        margin-right: 20px; /* Add right margin */
    }


/* Adjust the logo size and margins for different screen sizes */
@media (max-width: 768px) {
    .logo-container .logo {
        max-width: 80%; /* Adjust the size for tablets */
        margin-left: 10px; /* Adjust left margin for tablets */
        margin-right: 10px; /* Adjust right margin for tablets */
    }
}

@media (max-width: 480px) {
    .logo-container .logo {
        max-width: 60%; /* Adjust the size for mobile devices */
        margin-left: 5px; /* Adjust left margin for mobile devices */
        margin-right: 5px; /* Adjust right margin for mobile devices */
    }
}

.answer-item {
    display: flex;
    align-items: center;
}

.answer-text {
    flex-grow: 1;
    word-wrap: break-word;
    padding-right: 10px;
}

.answer-buttons {
    display: flex;
    align-items: center;
}

    .answer-buttons button {
        margin-left: 5px;
    }

.bg-custom-dark {
    background-color: #002546 !important;
    color: #fff !important;
}