body {
    background-color: #f8f9fa;
}

.image-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.image-item:hover {
    transform: scale(1.03);
}

.heart-icon {
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.heart-icon:hover {
    transform: scale(1.2);
}

#chatMessages {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 10px;
}

#chatMessages div {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

#chatMessages div:last-child {
    border-bottom: none;
}

.carousel-item {
    padding: 0 15px;
}

.modal-img-container {
    max-height: 70vh;
    overflow: hidden;
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}