* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Custom Bootstrap Overrides */

.btn-dark {
    background-color: rgba(0, 0, 0, 1) !important;
    border-color: rgba(0, 0, 0, 1) !important;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.btn-dark:disabled,
.btn-dark-focus {
    background-color: rgba(0, 0, 0, 1) !important;
    border-color: rgba(0, 0, 0, 1) !important;
}

.bg-dark {
    background-color: rgba(0, 0, 0, 1) !important;
}

@media (max-width: 1700px) {
    .container {
        max-width: 95% !important;
    }
}

/* Override End */

.app-navigation {
    min-height: 112px;
}

.nav-link {
    font-size: 16px;
}

.nav-btn {
    border-radius: 8px;
    min-width: 188px;
    min-height: 48px;
}

.text-black {
    color: rgba(0, 0, 0, 1) !important;
}

/* Footer */
.footer-content-wrapper p {
    line-height: 14px;
}

.footer-addres {
    line-height: 22px !important;
}

/* App Content */

.app-content {
    min-height: calc(100vh - 525px);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.page-header {
    font-weight: 400 !important;
}

.app-header-detail {
    font-size: 22px;
    width: 100%;
}

@media (min-width: 992px) {
    .app-header-detail {
        width: 80%;
        margin: 0 auto;
    }
}

.header-button-wrapper a {
    border-radius: 6px;
}

.single-answer-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.single-answer-wrapper span {
    flex: 1 1 20%;
    max-width: 200px; 
    box-sizing: border-box;
    margin-bottom: 10px;
}

.custom-radio {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    cursor: pointer;
    vertical-align: middle;
}

.custom-radio input {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-radio span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: transparent;
    transition: all 0.2s ease;
}

.custom-radio input:checked + span {
    width: 75%;
    height: 75%;
    background-color: #000;
    transform: translate(-50%, -50%);
}

.master-detail-container, .form-wrapper{
    width: 100%;
    background-color: rgba(245, 245, 245, 1);
    border-radius: 6px;
}

.form-control {
    border: 1px solid #ced4da; 
    border-radius: 4px;
    padding: 10px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: #000;
    box-shadow: 0 0 5px #000;
    outline: none;
}

.instrcutions-paragraph-wrapper{
    line-height: 27px;
}