﻿.rbl input[type="radio"] {
    margin-left: 6px;
    margin-right: 6px;
}

.cbl input[type="checkbox"] {
    margin-left: 6px;
    margin-right: 6px;
}

.logo {
    position: relative;
    height: auto;
    padding-left: 60px;
    padding-top: 50px;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* or 100dvh for dynamic viewport height */
}

main { /* or the element containing your main content */
    flex-grow: 1;
}

.footer {
    /* Add your desired footer styles here */
    padding: 20px;
    background-color: #204B87; /* Example styling */
    color: white;
    text-align: center;
}

/*.footer {
    width: 100%;
    height: 300px;*/ /* Adjust as needed */
/*background-color: #204B87;*/ /* Example styling */
/*color: white;*/ /* Example styling */
/*text-align: center;
    }*/

.arrow {
    color: #4F4F4F;
    text-decoration: none;
}

.links {
    color: #fff;
    text-decoration: none;
}

.outer-div {
    display: flex;
    justify-content: center; /* Horizontally centers content */
    align-items: center; /* Vertically centers content */
    height: 300px; /* Example height for the outer div */
    border: 1px solid black;
}

.inner-div {
    width: 100px; /* Example width for the inner div */
    height: 100px; /* Example height for the inner div */
    background-color: lightblue;
}

.rounded {
    border-radius: 25px
}

.checkbox-container {
    display: flex;
    align-items: center; /* Vertically centers the checkbox and text */
}

    .checkbox-container input[type="checkbox"] {
        flex-shrink: 0; /* Prevents the checkbox from shrinking */
        margin-right: 5px; /* Adds spacing between checkbox and text */
    }

    .checkbox-container label {
        /* Optional: Add styles to the label for text wrapping or overflow */
        width: 100%;
        display: inline-block;
        vertical-align: top;
        overflow-wrap: anywhere; /* Allows long words to break */
    }

/* Base tile button */
.tile-button {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

/* Card wrapper */
.tile-card {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    height: 110px;
    background: #fff;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* Hover elevation */
.tile-button:hover .tile-card {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Title text */
.tile-title {
    font-size: 17px;
    font-weight: 600;
    padding-bottom: 10px;
    color: #4F4F4F;
}

/* Arrow */
.tile-arrow {
    font-size: 32px;
    color: #4F4F4F;
    transition: transform 0.25s ease;
}

/* Rotate arrow on hover */
.tile-button:hover .tile-arrow {
    transform: translateX(5px);
}

/* Ripple click effect */
.tile-button .tile-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background: rgba(36,118,216,0.25);
    opacity: 0;
    transform: scale(1, 1);
    transition: transform 0.6s, opacity 1s;
}

.tile-button:active .tile-card::after {
    opacity: 1;
    transform: scale(50, 50);
    transition: 0s;
}

.section-heading {
    padding: 30px 0 0 30px;
    font-weight: 600;
}

.section-row {
    padding-left: 20px;
}

.choice-card {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: none;
    cursor: pointer;
    transition: box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease, transform 0.1s ease;
}

    .choice-card .card-body {
        padding: 16px 18px;
    }

    /* Hover effect */
    .choice-card:hover {
        box-shadow: 0 0.25rem 0.75rem rgba(15, 23, 42, 0.08);
        border-color: #c7d2fe; /* light blue */
        transform: translateY(-1px);
    }

/* Selected state */
.choice-card-selected {
    border-color: #2563eb; /* primary blue */
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
    background-color: #eff6ff; /* very light blue */
}