html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

body {
    margin-bottom: 60px;
    background-color: #ADD8E6;
}

main {
    color: black;
    font-weight: 500;
}

footer {
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

.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;
}

.blue-card {
    background-color: #ddf7f7;
}

input[type="radio"] {
    margin-left: 20px;
    margin-right: 5px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Basic list styling for demonstration */
.zebra-stripe ul {
    list-style-type: none; /* Removes default bullets */
    padding: 0;
    margin: 0;
}

.zebra-stripe li {
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Optional: adds a subtle separator */
}

/* Styles for odd-numbered list items */
.zebra-stripe li:nth-child(odd) {
    background-color: #f9f9f9; /* A light, subtle color */
}

/* Styles for even-numbered list items */
.zebra-stripe li:nth-child(even) {
    background-color: #e9e9e9; /* A slightly different shade */
}
