<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.card-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2em;
}

.card {
    display: flex;
    flex-direction: column;
    min-width: 350px;
    height: 500px;
    word-wrap: break-word;
    background-color: #fff;
    border: none;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.carousel{
    height: 200px;
    margin-bottom: 1em;
    background-color: #F6F4E8;
}

.carousel-inner{

    background-color: transparent;
}

.card img {
    margin: auto;
    max-width: 350px;
    max-height: 260px;
    width: auto !important; /* bootstrapdan dolayı zorunlu */
}

.card-body {
    padding-top: 0;
    overflow-y: auto;
    /* Allow scrolling inside the card for overflowing content */
    flex-grow: 1;
    /* Allow the body to grow and take available space */
    display: flex;
    flex-direction: column;
}
.card-content{
    flex-grow: 1
}

.carousel-item {
    max-height: 200px;
    overflow: hidden;
}

button.star-btn{
    z-index: 2;
    position: absolute;
    right:20px;
    top: 15px;
    background-color: transparent;
    padding: 0;
    border: none;
    outline: none;
    height: 20px;
    width: 20px;
}

.star-btn.spin svg.star{
    transform: rotate(360deg);
}

svg.star{
    position: absolute;
    right:0;
    top: 0;
    height: 20px;
    width: 20px;
    transition: transform 0.7s ease;
    transform-origin: 50% 50%;
}

svg.star path {
    fill: none;
    transition: fill 0.7s ease, stroke 0.7s ease;
}

.star-btn.spin svg.star path {
    fill: #ffff00;
}

@media (hover: hover) and (pointer: fine) {
    .star-btn:hover svg.star path {
        fill: #ffff00;
    }
}</pre></body></html>