.tarot-grid {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(6, 1fr);
    justify-content: center;
    align-items: center;
}
.tarot-card {
    display: flex;
    line-height: 1;
    vertical-align: middle;
    flex-direction: column;
    padding: 15px;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
    text-align: center;
    align-items: center;
    justify-content: space-between;
}

.tarot-card input {
    display: none;
}

.tarot-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
	border-style: none;
    height: auto;
    max-width: 150px;
    margin-top: -15px;
}

.tarot-card input:checked + img,
.tarot-card input:checked ~ img {
    border: 3px solid #082F2B;
    box-shadow: 0 0 10px #082F2B;
}

.center-btn {
    text-align: center;
    margin-top: 30px;
}

.center-btn  button {
    background-color: #8a2be2;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #e8bc58 !important;
}

.tarot-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.no-result, .tarot-card.resultsformating p{
    font-family: 'Source Serif Pro';
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    text-decoration: var(--e-global-typography-d627f32-text-decoration);
    line-height: 21px;
    color: #000;
}
.tarot-card.resultsformating h3 {
	font-family: 'Poppins' !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    font-weight: 400 !important;
    letter-spacing: 3px;
}
.tarot-card.resultsformating img {
    max-width: 250px;
}