.topdecor-image-search {
    max-width: 100%;
    margin: 30px auto;
    font-family: sans-serif;
}

.upload-box {
    border: 2px dashed #999;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    border-radius: 12px;
    transition: 0.3s;
    background: #fafafa;
}

.upload-box.dragover {
    border-color: #0073aa;
    background: #eef6fb;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.result-item {
    text-decoration: none;
    color: #000;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
}

.result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.result-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.result-item h4 {
    font-size: 14px;
    padding: 10px;
    text-align: center;
}
