.navbar {
    background-color: #7fb1f8;
}

[data-bs-theme="dark"] .navbar {
    background-color: #004085;
}

footer {
    background-color: #7fb1f8;
}

[data-bs-theme="dark"] footer {
    background-color: #004085;
}

.transparent {
    background-color: transparent;
}

.underline {
    text-decoration: none !important;
    border-bottom: solid 2px #ea4d36;
}

.red_card {
    border: solid 3px #ea4d36;
}

.black_card {
    border: solid 3px var(--bs-secondary-color);
}

.small-text {
    margin-top: 0.25rem;
    font-size: .875em;
    color: var(--bs-secondary-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-center {
    width: 100%;
    max-width: 600px;
    padding: 15px;
    margin: auto;
}

/* LOGIN ====================================================================================================*/

.card-body-icon {
    position: absolute;
    z-index: 0;
    top: -25px;
    right: 10px;
    font-size: 5rem;
    height: 40px;
}

.card-select:hover {
    background-color: #f6f2f2;
}

/* PROGRESS ====================================================================================================*/


.progress-container {
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--bs-light);  /* Bootstrap light color */
    display: inline-block;
    margin: 10px;
    width: 100%;
    vertical-align: top;
    height: 135px;
}
.progress-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.metrics-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.progress {
    height: 15px;
    background-color: var(--bs-gray-200);  /* Bootstrap gray-200 color */
}
.count {
    font-size: 24px;
    font-weight: bold;
}
.percentage {
    font-size: 24px;
    font-weight: bold;
}
.progress-wrapper {
    position: relative;
}
.icon-container {
    position: absolute;
    right: 0;
    top: 0;
}
.note-icon {
    color: var(--bs-secondary);  /* Bootstrap secondary color */
    font-size: 24px;
}

.w-10 {
    width: 10% !important;
}

.w-70 {
    width: 70% !important;
}
