body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-family: sans-serif;
}

.message-text {
    color: black;
}

.form-layout {
    border-radius: 15px;
    width: 50%;
}

.dashboard-layout {
    border-radius: 15px;
    width: 50%;
    position: center;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;

}

.active {
    color: green;
}

.bs-example {
    margin: 20px;
}

.modal-backdrop {
    backdrop-filter: blur(5px);
    background-color: #01223770;
}

.modal-backdrop.in {
    opacity: 1 !important;
}

.flexbox {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 350px;
    border-radius: 8px;
    padding: 20px;
    justify-content: center;

}

.dbcard {
    border-radius: 8px;
    padding: 10px;
}

.button {
    padding: 5px;
    margin: 25px auto;
    border: 1px thick black;
    border-radius: 8px;
    width: 100%;
}

.title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

/* for medium/large screens */
@media(min-width: 992px) {
    .tabs {
        margin: 10px 0px;
        margin-bottom: -1px;
        background-color: white;
        color: black;
        border-bottom-color: #332D2D;
        padding: 10px;
        width: 250px;
        cursor: pointer;
        font-size: large;
        letter-spacing: 2px;
    }
}

@media (min-width:992px) and (max-width:1080px) {
    .c-nav {
        font-size: 14px;
    }
}

.default {
    border-bottom-style: solid;
    border-bottom-width: 3px;
    border-bottom-color: #332D2D;
    font-size: large;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bolder;
}

.not-allowed {
    cursor: not-allowed;
}

.tabContainer {
    position: relative;
}

.tabContents {
    width: 100%;
    position: absolute;
    border: 1px solid black;
    border-right-color: white;
    border-left-color: white;
    margin: 0px auto;
    top: 0px;
    padding: 0px;
    justify-content: center;
    margin-left: 0px;

}

/* Apply the below class settings when the browser window is 800px wide or less:  */
@media screen and (max-width: 800px) {
    .tabs {
        margin: 10px 0px;
        margin-bottom: -1px;
        background-color: white;
        color: black;
        border-bottom-color: #332D2D;
        padding: 10px;
        width: 150px;
        cursor: pointer;
        font-size: large;
    }

    .default {
        border-bottom-style: solid;
        border-bottom-color: #332D2D;
        border-bottom-width: 5px;
        font-size: large;
    }
}

.tabs:hover {
    background-color: rgba(211, 211, 211, 0.115) !important;
    /* border-radius: 16%; */
    /* color: rgb(63, 174, 63); */
}


/* Breakpoint prefix	Minimum width	CSS
sm	640px	@media (min-width: 640px) { ... }
md	768px	@media (min-width: 768px) { ... }
lg	1024px	@media (min-width: 1024px) { ... }
xl	1280px	@media (min-width: 1280px) { ... }
2xl	1536px	@media (min-width: 1536px) { ... } */