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, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin-bottom: 0; /* Adjust this if the margin is not needed */
}

.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}
/* Basic styling for the modal */
.modal {
    display: none; /* Ensure the modal is hidden by default */
    position: fixed;
    z-index: 1000; /* Ensure it's above other content when displayed */
    left: 50%;  
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    text-align: center;
}

.close-button {
    color: #008080;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close-button:hover,
    .close-button:focus {
        color: black;
        text-decoration: none;
    }

.success {
    border-color: green;
}

.error {
    border-color: red;
}
/* Remove default bullets */
ul, #myUL {
    list-style-type: none;
    
}

/* Remove margins and padding from the parent ul */
#myUL {
    border-style: solid;
    border-width: 1px;
    padding: 0.5rem 0.5rem;
}
#liStyle {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
#liStyleInside {
    list-style-type: circle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* Style the caret/arrow */
.caret {
    cursor: pointer;
    user-select: none; /* Prevent text selection */
    font-size:large;
}

    /* Create the caret/arrow with a unicode, and style it */
    .caret::before {
        content: "\25B6";
        color: black;
        display: inline-block;
        margin-right: 6px;
    }

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
    transform: rotate(90deg);
}

/* Hide the nested list */
.nested {
    display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active {
    display: block;
}

/* Custom styles for the navbar */
.bg-orange {
    background-color: #FF8B00; /* Orange background */
}

.text-white {
    color: #FFFFFF !important;
}

.navbar, .navbar-collapse {
    display: flex;
    justify-content: center; /* Center the navbar content */
}