.ict-container {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 12px;
    max-width: 100%;
}

.ict-header {
    text-align: center;
    color: #222;
}

.ict-upload input {
    width: 100%;
    padding: 10px;
}

.ict-controls {
    margin: 15px 0;
}

#ict-compress {
    background: #00e5ff;
    color: #000;
    padding: 12px;
    border: none;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

#ict-compress:hover {
    opacity: 0.9;
}

.ict-images {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.ict-images img {
    max-width: 100%;
    border-radius: 8px;
}

#ict-download {
    display: none;
    margin-top: 20px;
    background: #00e5ff;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    width: 100%;
}

#ict-download.show {
    display: block;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
}

@media(max-width:768px){
    .ict-images {
        flex-direction: column;
    }
}