#detecting-card {
    width: 100%;
    height: 30rem;
    border: 3px solid #C8E176;
    background-color: #f8f8eb;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
    color: #6A8A00;
}

.loader-line {
    width: 200px;
    height: 6px;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
    margin: 100px auto;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 6px;
    width: 40%;
    background-color: #6A8A00;
    -webkit-animation: lineAnim 1s linear infinite;
    -moz-animation: lineAnim 1s linear infinite;
    animation: lineAnim 1s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }

    50% {
        left: 20%;
        width: 80%;
    }

    100% {
        left: 100%;
        width: 100%;
    }
}



/* ----Skeleton Detection card---- */
.header {
    display: flex;
    justify-content: space-between;
}

.title {
    background-color: #E8EAED;
    width: 195px;
    height: 17px;
    border-radius: 22px;
}

.more {
    background-color: #E8EAED;
    width: 98px;
    height: 17px;
    border-radius: 22px;
}

/* --cards-- */
.top-l {
    background-color: #E8EAED;
    width: 67px;
    height: 14px;
    border-radius: 22px;
}

.top {
    display: flex;
    justify-content: space-between;
}


.top-r {
    background-color: #E8EAED;
    width: 45px;
    height: 14px;
    border-radius: 22px;
}

.card-text1 {
    background-color: #E8EAED;
    width: 140px;
    height: 14px;
    border-radius: 22px;
}

.card-text2 {
    background-color: #E8EAED;
    width: 140px;
    height: 13px;
    border-radius: 22px;
}

.img-shadow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E8EAED;
}

.shadow-button {
    background-color: #E8EAED;
    border-color: #E8EAED;
    border-radius: 100px;
    width: 100%;
    height: 40px;
}


/* Page header */
.page-header .material-symbols-outlined {
    color: #000000;
}

.page-header img {
    width: 10rem;
}