.koa-model-name {
    margin-top: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.koa-result {
    margin-top: 50px;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 12px;
    border: 2px solid #27ae60;
}

.koa-result h3 {
    color: #27ae60;
    text-align: center;
}

.koa-result-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.koa-result-item {
    text-align: center;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.koa-result-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.koa-result-item strong {
    display: block;
    margin-top: 8px;
    color: #e74c3c;
}

.koa-result-item.kiss strong { color: #27ae60; }