/* Color generator specific styles */
#color-result {
    min-height: auto;
    padding: 0;
    background: transparent;
    border: none;
}

#color-result.success {
    background: transparent;
    border: none;
}

.color-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
}

.color-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--border-color);
    box-shadow: 0 4px 12px var(--shadow);
    margin: 0 auto;
}

.color-info {
    text-align: center;
    width: 100%;
}

.color-codes {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.color-codes div {
    background: var(--bg-tertiary);
    padding: 0.8rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.color-codes strong {
    color: var(--accent-primary);
    margin-right: 0.5rem;
}