@import url(core.css);
@import url(card.css);


.themes-container {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.theme-title {
    text-align: center;
}

.theme-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    width: 600px;
    gap: 5px;
}

.test-results-container {
    padding-bottom: 10rem;
}

.test-results-header {
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 1rem;
}

.tests-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.tests-list {
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
    /* background-color: var(--secondary); */
}

.test-item p {    
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.8), 0px 0px 25px rgba(0, 0, 0, 0.9);
}

.test-item {    
    margin: auto;
    background-color: var(--secondary);
    box-shadow: 1.25px 1.25px 1.25px rgba(0, 0, 0, 0.1), 3px 3px 3px rgba(0, 0, 0, 0.2);
    width: 70%;
    height: 100%;    
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.test-link {    

}

.test-progress-container {    
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    padding: 0 2rem;
    margin: 0.5rem 0;
}

.test-item:hover {
    width: 72%;
    height: 110%;
}

.test-progress-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.test-progress-item {
    
}

.test-progress-star {
    /* transition: all 0.25s ease-in-out; */
    width: 42px;
}


.test-progress-star:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.gender-list {
    margin-top: 3.25rem;
}


.search-container {
    display: flex;
    flex-direction: column;
    background-color: var(--white100);
    width: 275px;
    height: 130px;
    border-radius: 10px;    
}


.custom-query-title {
    text-transform: capitalize;
    font-size: small;
    font-weight: 400;
    color: var(--primary);
    text-shadow: 0.25px 0.25px 0.25px rgba(0, 0, 0, 0.5), 0px 0px 0px rgba(0, 0, 0, 0.7);
}

.inline-form-container {
    width: inherit;
}

.custom-query-btn {
    margin-top: 1rem;
}


.tests-avg-empty {
    margin-left: 2rem;
}

.top-cards-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.card-container {
        display: grid;
    grid-template-areas: 
        "image text"
        "bottom bottom";
    width: 275px;
    height: 130px;
    border-radius: 10px;    
}

.tests-overall-avg {
    background-color: var(--white100);
    font-weight: bold;
    text-transform: capitalize;
    font-size: 16px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 5px;
    width: auto;
    height: 2rem;
    padding: 4px 16px;
}