
body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    text-align: center;
    padding: 50px 20px;
}

h1 {
    color: #4a148c;
    margin-bottom: 20px;
}

.add-image {
    margin-bottom: 30px;
}

.add-image input {
    padding: 8px;
    width: 250px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.add-image button {
    padding: 8px 15px;
    border-radius: 8px;
    border: none;
    background: #4a148c;
    color: white;
    cursor: pointer;
    margin-left: 5px;
}

.add-image button:hover {
    background: #7b1fa2;
}

.images {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.images li {
    position: relative;
    cursor: pointer;
}

.images img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.images img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
