.mat-recept-tinder-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #f5f5f5;
}

.mat-recept-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.recipe-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    height: 80vh;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease-out;
}

.recipe-card.swiping {
    transition: none;
}

.recipe-image {
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-content {
    padding: 20px;
    height: 40%;
    overflow-y: auto;
}

.recipe-content h2 {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #333;
}

.recipe-description {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

.swipe-instructions {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    pointer-events: none;
}

.swipe-left, .swipe-right {
    font-size: 24px;
    opacity: 0.7;
}

.swipe-left {
    color: #ff4444;
}

.swipe-right {
    color: #00C851;
}

/* Animation classes */
.swipe-left-animation {
    transform: translate(-150%, -50%) rotate(-30deg);
    opacity: 0;
}

.swipe-right-animation {
    transform: translate(150%, -50%) rotate(30deg);
    opacity: 0;
} 