.icp-container {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icp-header {
    background: #00c8ff;
    color: #1a1a2e;
    padding: 15px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.icp-upload {
    background: #f4f6f9;
    padding: 25px;
    border: 2px dashed #ccc;
    text-align: center;
    margin: 15px 0;
    cursor: pointer;
}

canvas {
    width: 100%;
    height: auto;
    border-radius: 12px;
    cursor: crosshair;
}

.icp-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
}

.icp-color-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.icp-code {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #f4f6f9;
    padding: 10px;
    border-radius: 10px;
}

button {
    background: #00c8ff;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.icp-download {
    width: 100%;
    margin-top: 15px;
}