.ingenio-tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ingenio-tool-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    width: 220px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
    transition: box-shadow 0.3s ease;
}

.ingenio-tool-box:hover {
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.15);
}

.ingenio-tool-icon {
    font-size: 28px;
    color: #0073aa;
    display: block;
    margin-bottom: 10px;
}

.ingenio-tool-name {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
}

.ingenio-tool-shortcode {
    background: #f9f9f9;
    padding: 6px 10px;
    display: inline-block;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
    user-select: all;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ingenio-tool-shortcode.copied {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}
