.funny-dating-app {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.response-button {
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.response-button:hover {
    transform: scale(1.05);
}

.response-button[data-response="funny"] {
    background-color: #4CAF50;
    color: white;
}

.response-button[data-response="not-funny"] {
    background-color: #f44336;
    color: white;
}

.matches-container {
    margin-top: 30px;
}

.matches-list {
    list-style: none;
    padding: 0;
}

.matches-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.match-score {
    font-weight: bold;
    color: #4CAF50;
}

.card {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    margin-top: 20px;
    padding: 20px;
}

.card h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}