.itp-wrapper {
    background: #f2f2f2;
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    color: #000;
}

.itp-header {
    background: #add8e6;
    padding: 15px;
    text-align: center;
    border-radius: 6px;
}

.itp-header h2 {
    margin: 0;
    color: #000;
}

.itp-content {
    margin-top: 20px;
    text-align: center;
}

#itp-images {
    margin-bottom: 15px;
}

#itp-convert {
    background: #add8e6;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

#itp-convert:hover {
    background: #87c7e0;
}

.itp-thumb {
    width: 100px;
    margin: 5px;
    border-radius: 4px;
}

.itp-download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #add8e6;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.itp-download-btn:hover {
    background: #87c7e0;
}

/* Responsive */
@media (max-width: 768px) {
    .itp-wrapper {
        width: 95%;
    }
}