#color-extractor-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#color-extractor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 2px;
    max-width: 152px;
}

.color-extractor-cell {
    width: 30px;
    height: 30px;
    position: relative;
    border: 2px solid white;
}

#color-extractor-rgb-display {
    margin-bottom: 8px;
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    font-family: monospace;
    font-size: 14px;
    min-height: 20px;
    line-height: 20px;
}

#color-extractor-nearest-match {
    margin-top: 8px;
    background-color: #f0f0f0;
    color: #333;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    min-height: 20px;
    line-height: 20px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.color-match-block {
    width: 20px;
    height: 20px;
    border: 1px solid #333;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
}

#color-extractor-nearest-match a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

#color-extractor-nearest-match a:hover {
    color: #004499;
    text-decoration: underline;
}




