body {
    background-color: #14213d !important;
    color: #efefef !important;
    font-family: "Comfortaa", sans-serif !important;
    font-size: 0.9rem !important;
}

h1 {
    font-family: "Sniglet", system-ui !important;
    font-weight: 400 !important;
}

h5 {
    font-size: 1.1rem !important;
    font-weight: bolder !important;
}

.main-container {
    padding: 20px;
}

.info-container {}

.topbar {
    background: #fff;
    border-radius: 10px;
    color: #14213d !important;
    display: flex;
    flex-direction: column;
    margin: 10px;
    margin-bottom: 20px;
    padding: 10px;
}

.topbar h5 {
  margin: 5px;
}


.build {
  text-align: right;
  width: 100%;
}


.cards-container {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-around; */
}



.card {
    background-color: #0d1821;
    border-radius: 10px;
    color: #b4cded;
    flex: 1;
    margin: 10px;
    padding: 10px;
    width: 300px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 5px !important;
}



/* bootstrap button overrides */


.btn {
    font-size: 0.9rem !important;
}

.btn-primary {
    border: 1px solid #b4cded !important;
    background-color: #b4cded !important;
    color: #0d1821 !important;
    font-weight: 900 !important;
}

.btn-primary:hover {
    background-color: #0d1821 !important;
    color: #efefef !important;
}






.checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 3px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s; 
}
  
.actual-checkbox {
    display: none; /* hide actual checkbox but keep in DOM for form submission */
}
  
.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #bbb;
    border-radius: 4px;
    position: relative; 
}
  
.custom-checkbox::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px; 
    height: 16px;
    margin-left: -8px;
    margin-top: -8px;
    border-radius: 2px;
    background: transparent;
    transition: background-color 0.2s;
}
  
.checkbox-wrapper.active .custom-checkbox::after {
    background: #2196F3;
}
  
.checkbox-wrapper.active {
    background-color: #e3f2fd;
}
